home *** CD-ROM | disk | FTP | other *** search
/ comtecelectrical.ca / www.comtecelectrical.ca.tar / www.comtecelectrical.ca / infobots / Backup / MSOCache / All Users / 90000409-6000-11D3-8CFE-0150048383C9 / O1561415.CAB / MSOHLP11.CHM_1033 / html / inline.js < prev    next >
Text File  |  2003-05-28  |  837KB  |  11,856 lines

  1. ∩╗┐// Created : 04/12/2002
  2.  
  3. var L_UNDEFINED_TEXT="Help could not locate this inline definition";
  4.  
  5. function AppendPopup(oSource, sPopup)
  6. {
  7.     var sPopupText;
  8.     if (oSource.tagName=="A" && oSource.getAttribute("State")!="On")
  9.     {
  10.     
  11.         sPopupText= GetGlossaryTerms(sPopup);
  12.     
  13.         // Have we found a definition?
  14.         if (sPopupText != L_UNDEFINED_TEXT)
  15.         {
  16.             oSource.insertAdjacentHTML("BeforeEnd", "<SPAN ID='Pop' class='GlossaryDef'> " + sPopupText + "</SPAN>");
  17.             oSource.setAttribute("State", "On");
  18.             window.event.returnValue=false;
  19.         }
  20.         else
  21.         {
  22.             alert(L_UNDEFINED_TEXT);
  23.         }
  24.     }
  25.     else if (oSource.tagName=="A" && oSource.getAttribute("State")=="On" )
  26.     {
  27.         oSource.all("Pop").outerHTML="";
  28.         oSource.setAttribute("State", "Off");
  29.         window.event.returnValue=false;
  30.     }
  31. }
  32.  
  33.  
  34. function GetGlossaryTerms(sPopup)
  35. {
  36.     var sTemp;
  37.     switch (sPopup)
  38.  
  39.     {
  40.         // Generated on 05/28/2003 4:00:24 AM
  41.  
  42.         // Access
  43.  
  44.         case 'AcAdeFile':
  45.             L_AcAdeFile_TEXT='(ADE file: A Microsoft Access project (.adp) file with all modules compiled and all editable source code removed.)';
  46.             sTemp=L_AcAdeFile_TEXT;
  47.             break;
  48.         case 'AcAnsiSqlQueryMode':
  49.             L_AcAnsiSqlQueryMode_TEXT='(ANSI SQL query mode: One of two types of SQL syntax: ANSI-89 SQL (also called Microsoft Jet SQL and ANSI SQL), which is the traditional Jet SQL syntax; and ANSI-92 SQL, which has new and different reserved words, syntax rules, and wildcard characters.)';
  50.             sTemp=L_AcAnsiSqlQueryMode_TEXT;
  51.             break;
  52.         case 'AcAutofiltering':
  53.             L_AcAutofiltering_TEXT='(autofiltering: Filtering data in PivotTable or PivotChart view by selecting one or more items in a field that allows filtering.)';
  54.             sTemp=L_AcAutofiltering_TEXT;
  55.             break;
  56.         case 'AcBigintDataType':
  57.             L_AcBigintDataType_TEXT='(bigint data type: In an Access project, a data type of 8 bytes (64 bits) that stores whole numbers in the range of -2^63 (-9,223,372,036,854,775,808) through 2^63-1 (9,223,372,036,854,775,807).)';
  58.             sTemp=L_AcBigintDataType_TEXT;
  59.             break;
  60.         case 'AcCategoryField':
  61.             L_AcCategoryField_TEXT='(category field: A field that is displayed in the category area of PivotChart view. Items in a category field appear as labels on the category axis.)';
  62.             sTemp=L_AcCategoryField_TEXT;
  63.             break;
  64.         case 'AcClassModule':
  65.             L_AcClassModule_TEXT='(class module: A module that can contain the definition for a new object. Each instance of a class creates a new object. Procedures defined in the module become properties and methods of the object. Class modules can exist alone or with forms and reports.)';
  66.             sTemp=L_AcClassModule_TEXT;
  67.             break;
  68.         case 'AcColumnArea':
  69.             L_AcColumnArea_TEXT='(column area: The part of PivotTable view that contains column fields.)';
  70.             sTemp=L_AcColumnArea_TEXT;
  71.             break;
  72.         case 'AcColumnField':
  73.             L_AcColumnField_TEXT='(column field: A field in the column area of PivotTable view. Items in column fields are listed across the top of a PivotTable list. Inner column fields are closest to the detail area; outer column fields are above the inner column fields.)';
  74.             sTemp=L_AcColumnField_TEXT;
  75.             break;
  76.         case 'AcConditionalFiltering':
  77.             L_AcConditionalFiltering_TEXT='(conditional filtering: Filtering a field to show the top or bottom <i>n</i> items based on a total. For example, you could filter for the three cities that generated the most sales or the five products that are least profitable.)';
  78.             sTemp=L_AcConditionalFiltering_TEXT;
  79.             break;
  80.         case 'AcConstraint':
  81.             L_AcConstraint_TEXT='(constraint: A restriction placed on the value that can be entered into a column or a row. For example, values in the Age column cannot be less than 0 or greater than 110.)';
  82.             sTemp=L_AcConstraint_TEXT;
  83.             break;
  84.         case 'AcCustomGroup':
  85.             L_AcCustomGroup_TEXT='(custom group: An item of a custom group field. A custom group contains two or more items from a row or column field.)';
  86.             sTemp=L_AcCustomGroup_TEXT;
  87.             break;
  88.         case 'AcCustomGroupField':
  89.             L_AcCustomGroupField_TEXT='(custom group field: A field in the row or column area that contains custom groups as its items.)';
  90.             sTemp=L_AcCustomGroupField_TEXT;
  91.             break;
  92.         case 'AcCustomOrder':
  93.             L_AcCustomOrder_TEXT='(custom order: User-defined sort order. For example, you could define a custom sort order to display values in the EmployeeTitle column on the basis of the title\'s seniority.)';
  94.             sTemp=L_AcCustomOrder_TEXT;
  95.             break;
  96.         case 'AcDataArea':
  97.             L_AcDataArea_TEXT='(data area: The part of PivotTable or PivotChart view that contains summary data. Values in the data area are displayed as records in PivotTable view and as data points in PivotChart view.)';
  98.             sTemp=L_AcDataArea_TEXT;
  99.             break;
  100.         case 'AcDatabaseDiagram':
  101.             L_AcDatabaseDiagram_TEXT='(database diagram: A graphical representation of any portion of a database schema. It can be either a whole or partial picture of the structure of the database. It includes tables, the columns they contain, and the relationships between the tables.)';
  102.             sTemp=L_AcDatabaseDiagram_TEXT;
  103.             break;
  104.         case 'AcDataField':
  105.             L_AcDataField_TEXT='(data field: A field that contains summarized data in PivotTable or PivotChart view. A data field usually contains numeric data.)';
  106.             sTemp=L_AcDataField_TEXT;
  107.             break;
  108.         case 'AcDataLabel':
  109.             L_AcDataLabel_TEXT='(data label: A label that provides additional information about a data marker, which represents a single data point or value.)';
  110.             sTemp=L_AcDataLabel_TEXT;
  111.             break;
  112.         case 'AcDataMarker':
  113.             L_AcDataMarker_TEXT='(data marker: A bar, area, dot, slice, or other symbol in a chart that represents a single data point or value. Related data markers in a chart constitute a data series.)';
  114.             sTemp=L_AcDataMarker_TEXT;
  115.             break;
  116.         case 'AcDataOutline':
  117.             L_AcDataOutline_TEXT='(data outline: A window that you can display when a data access page is open in Design view. The data outline provides a tree view of the data model of a page. You can select and set properties of the elements that are displayed in the window.)';
  118.             sTemp=L_AcDataOutline_TEXT;
  119.             break;
  120.         case 'AcDataSeries':
  121.             L_AcDataSeries_TEXT='(data series: Related data points that are plotted in a chart. Each data series in a chart has a unique color or pattern. You can plot one or more data series in a chart.)';
  122.             sTemp=L_AcDataSeries_TEXT;
  123.             break;
  124.         case 'AcDetailArea':
  125.             L_AcDetailArea_TEXT='(detail area: The part of PivotTable view that contains detail and total fields.)';
  126.             sTemp=L_AcDetailArea_TEXT;
  127.             break;
  128.         case 'AcDetailField':
  129.             L_AcDetailField_TEXT='(Detail field: A field that displays all rows, or records, from the underlying record source.)';
  130.             sTemp=L_AcDetailField_TEXT;
  131.             break;
  132.         case 'AcDetailSection':
  133.             L_AcDetailSection_TEXT='(detail section: Used to contain the main body of a form or report. This section usually contains controls bound to the fields in the record source but can also contain unbound controls, such as labels that identify a field\'s contents.)';
  134.             sTemp=L_AcDetailSection_TEXT;
  135.             break;
  136.         case 'AcDropArea':
  137.             L_AcDropArea_TEXT='(drop area: An area in PivotTable or PivotChart view where you can drop fields from the field list to display the data in the field. The labels on each drop area indicate the types of fields that you can create in the view.)';
  138.             sTemp=L_AcDropArea_TEXT;
  139.             break;
  140.         case 'AcEditControl':
  141.             L_AcEditControl_TEXT='(edit control: Also known as a text box, an edit control is a rectangular window in which a user can enter and edit text.)';
  142.             sTemp=L_AcEditControl_TEXT;
  143.             break;
  144.         case 'AcFilterArea':
  145.             L_AcFilterArea_TEXT='(filter area: The part of PivotTable or PivotChart view that contains filter fields.)';
  146.             sTemp=L_AcFilterArea_TEXT;
  147.             break;
  148.         case 'AcFilterField':
  149.             L_AcFilterField_TEXT='(filter field: A field in the filter area that you can use to filter data displayed in PivotTable or PivotChart view. Filter fields perform the same functions as page fields in Microsoft Excel PivotTable reports.)';
  150.             sTemp=L_AcFilterField_TEXT;
  151.             break;
  152.         case 'AcFormFooter':
  153.             L_AcFormFooter_TEXT='(form footer: Used to display instructions for using a form, command buttons, or unbound controls to accept input. Appears at the bottom of the form in Form view and at the end of a printout.)';
  154.             sTemp=L_AcFormFooter_TEXT;
  155.             break;
  156.         case 'AcFormHeader':
  157.             L_AcFormHeader_TEXT='(form header: Used to display a title for a form, instructions for using it, or command buttons that open related forms or carry out other tasks. Appears at the top of the form in Form view and at the beginning of a printout.)';
  158.             sTemp=L_AcFormHeader_TEXT;
  159.             break;
  160.         case 'AcFunction':
  161.             L_AcFunction_TEXT='(function: A query that takes input parameters and returns a result like a stored procedure. Types: scalar (multistatement; returns one value), inline (one statement; an updateable table value), and table (multistatement; table value).)';
  162.             sTemp=L_AcFunction_TEXT;
  163.             break;
  164.         case 'AcGroupFooter':
  165.             L_AcGroupFooter_TEXT='(group footer: Used to place information, such as group name or group total, at the end of a group of records.)';
  166.             sTemp=L_AcGroupFooter_TEXT;
  167.             break;
  168.         case 'AcGroupHeader':
  169.             L_AcGroupHeader_TEXT='(group header: Used to place information, such as group name or group total, at the beginning of a group of records.)';
  170.             sTemp=L_AcGroupHeader_TEXT;
  171.             break;
  172.         case 'AcItem':
  173.             L_AcItem_TEXT='(item: A unique element of data within a field. When a lower level of items is available for display in a PivotTable list or the field list, an expand indicator (+) appears beside the item.)';
  174.             sTemp=L_AcItem_TEXT;
  175.             break;
  176.         case 'AcLayoutPreview':
  177.             L_AcLayoutPreview_TEXT='(Layout preview: A preview of a report that uses a minimum amount of data to display the general layout of the report. Click <b>Print Preview</b> to display the exact data that appears in the report.)';
  178.             sTemp=L_AcLayoutPreview_TEXT;
  179.             break;
  180.         case 'AcLegend':
  181.             L_AcLegend_TEXT='(legend: A box that identifies the patterns or colors assigned to data series or categories in a chart.)';
  182.             sTemp=L_AcLegend_TEXT;
  183.             break;
  184.         case 'AcMacro':
  185.             L_AcMacro_TEXT='(macro: An action or set of actions that you can use to automate tasks.)';
  186.             sTemp=L_AcMacro_TEXT;
  187.             break;
  188.         case 'AcMdeFile':
  189.             L_AcMdeFile_TEXT='(MDE file: Microsoft Access database (.mdb) file with all modules compiled and all editable source code removed.)';
  190.             sTemp=L_AcMdeFile_TEXT;
  191.             break;
  192.         case 'AcMicrosoftAccessDatabase':
  193.             L_AcMicrosoftAccessDatabase_TEXT='(Microsoft Access database: A collection of data and objects (such as tables, queries, or forms) that is related to a particular topic or purpose. The Microsoft Jet database engine manages the data.)';
  194.             sTemp=L_AcMicrosoftAccessDatabase_TEXT;
  195.             break;
  196.         case 'AcMicrosoftSqlServerDatabase':
  197.             L_AcMicrosoftSqlServerDatabase_TEXT='(Microsoft SQL Server database: A database in Microsoft SQL Server, it consists of tables, views, indexes, stored procedures, functions, and triggers.)';
  198.             sTemp=L_AcMicrosoftSqlServerDatabase_TEXT;
  199.             break;
  200.         case 'acMoveHandle':
  201.             L_acMoveHandle_TEXT='(move handle: The large square that is displayed in the upper-left corner of the selected control in Design view. You can click and move the handle to move the control to another location.)';
  202.             sTemp=L_acMoveHandle_TEXT;
  203.             break;
  204.         case 'AcPageFooter':
  205.             L_AcPageFooter_TEXT='(page footer: Used to display page summaries, dates, or page numbers at the bottom of every page in a form or report. In a form, the page footer appears only when you print the form.)';
  206.             sTemp=L_AcPageFooter_TEXT;
  207.             break;
  208.         case 'AcPageHeader':
  209.             L_AcPageHeader_TEXT='(page header: Used to display a title, column headings, dates, or page numbers at the top of every page in a form or report. In a form, the page header appears only when you print the form.)';
  210.             sTemp=L_AcPageHeader_TEXT;
  211.             break;
  212.         case 'AcPivotchartView':
  213.             L_AcPivotchartView_TEXT='(PivotChart view: A view that shows a graphical analysis of data in a datasheet or form. You can see different levels of detail or specify the layout by dragging fields and items or by showing and hiding items in the drop-down lists for the fields.)';
  214.             sTemp=L_AcPivotchartView_TEXT;
  215.             break;
  216.         case 'AcPivottableView':
  217.             L_AcPivottableView_TEXT='(PivotTable view: A view that summarizes and analyzes data in a datasheet or form. You can use different levels of detail or organize data by dragging the fields and items or by showing and hiding items in the drop-down lists for the fields.)';
  218.             sTemp=L_AcPivottableView_TEXT;
  219.             break;
  220.         case 'AcReplicaSetTopology':
  221.             L_AcReplicaSetTopology_TEXT='(replica set topology: The order in which changes are propagated from replica to replica. Topology determines how quickly changes in another replica appear in your replica.)';
  222.             sTemp=L_AcReplicaSetTopology_TEXT;
  223.             break;
  224.         case 'AcReportFooter':
  225.             L_AcReportFooter_TEXT='(report footer: A report section that is used to place information that normally appears at the bottom of the page, such as page numbers, dates, and sums.)';
  226.             sTemp=L_AcReportFooter_TEXT;
  227.             break;
  228.         case 'AcReportHeader':
  229.             L_AcReportHeader_TEXT='(report header: A report section that is used to place information (such as a title, date, or report introduction) at the beginning of a report.)';
  230.             sTemp=L_AcReportHeader_TEXT;
  231.             break;
  232.         case 'AcRowArea':
  233.             L_AcRowArea_TEXT='(row area: The part of PivotTable view that contains row fields.)';
  234.             sTemp=L_AcRowArea_TEXT;
  235.             break;
  236.         case 'AcRowField':
  237.             L_AcRowField_TEXT='(row field: A field in the row area of PivotTable view. Items in row fields are listed down the left side of the view. Inner row fields are closest to the detail area; outer row fields are to the left of the inner row fields.)';
  238.             sTemp=L_AcRowField_TEXT;
  239.             break;
  240.         case 'AcSectionBar':
  241.             L_AcSectionBar_TEXT='(section bar: The horizontal bar above a data access page section in Design view. The section bar displays the type and name of the section. Use it to access the section\'s property sheet.)';
  242.             sTemp=L_AcSectionBar_TEXT;
  243.             break;
  244.         case 'AcSeriesField':
  245.             L_AcSeriesField_TEXT='(series field: A field that is displayed in the series area of a chart and that contains series items. A series is a group of related data points.)';
  246.             sTemp=L_AcSeriesField_TEXT;
  247.             break;
  248.         case 'AcSeriesPoint':
  249.             L_AcSeriesPoint_TEXT='(series point: An individual data value that is plotted in a chart and represented by a column, bar, line, pie or doughnut slice, or other type of data marker.)';
  250.             sTemp=L_AcSeriesPoint_TEXT;
  251.             break;
  252.         case 'AcSqlVariantDataType':
  253.             L_AcSqlVariantDataType_TEXT='(sql_variant data type: In an Access project, a data type that stores values of several data types, except for text, ntext, image, timestamp, and sql_variant types. It is used in a column, parameter, variable, or return value of a user-defined function.)';
  254.             sTemp=L_AcSqlVariantDataType_TEXT;
  255.             break;
  256.         case 'AcTableDataType':
  257.             L_AcTableDataType_TEXT='(table data type: In an Access project, a special data type that is used to store a result set in a local variable or return value of a user-defined function for later processing. It can be used in place of a temporary table stored in the tempdb database.)';
  258.             sTemp=L_AcTableDataType_TEXT;
  259.             break;
  260.         case 'AcTotalField':
  261.             L_AcTotalField_TEXT='(total field: A field that summarizes data from the underlying record source. A total field might use a summary function, such as Sum or Count, or use an expression to calculate summary values.)';
  262.             sTemp=L_AcTotalField_TEXT;
  263.             break;
  264.         case 'AcTrigger':
  265.             L_AcTrigger_TEXT='(trigger: A special form of a stored procedure that is carried out automatically when data in a specified table is modified. Triggers are often created to enforce referential integrity or consistency among logically related data in different tables.)';
  266.             sTemp=L_AcTrigger_TEXT;
  267.             break;
  268.         case 'AcUserDefinedDataType':
  269.             L_AcUserDefinedDataType_TEXT='(user-defined data type: In a Microsoft SQL Server database, a definition of the type of data a column can contain. It is defined by the user with existing system data types. Rules and defaults can only be bound to user-defined data types.)';
  270.             sTemp=L_AcUserDefinedDataType_TEXT;
  271.             break;
  272.         case 'AcView(object)':
  273.             L_AcViewobject_TEXT='(view (object): In an Access project, a type of query that is a virtual table based on an <b>SQL SELECT</b> statement. For example, a view might contain only 3 out of 10 available columns in a join of two tables, in order to limit access to certain data.)';
  274.             sTemp=L_AcViewobject_TEXT;
  275.             break;
  276.         case 'AcXmlAttribute':
  277.             L_AcXmlAttribute_TEXT='(XML attribute: Information that is added to a tag to provide more information about the tag, such as <ingredient quantity=\"2\"units=\"cups\">flour</ingredient>.)';
  278.             sTemp=L_AcXmlAttribute_TEXT;
  279.             break;
  280.         case 'AcXmlElement':
  281.             L_AcXmlElement_TEXT='(XML element: Information that is delimited by a start and end tag in an Extended Markup Language (XML) document. An example would be <LastName>Davalio</LastName>.)';
  282.             sTemp=L_AcXmlElement_TEXT;
  283.             break;
  284.         case 'AcXmlEntities':
  285.             L_AcXmlEntities_TEXT='(XML entities: Combinations of characters and symbols that replace other characters when an XML document is parsed, usually those that have other meanings in XML. For example, &lt; represents the < symbol which is also the opening bracket for a tag.)';
  286.             sTemp=L_AcXmlEntities_TEXT;
  287.             break;
  288.         case 'defAction':
  289.             L_defAction_TEXT='(action: The basic building block of a macro; a self-contained instruction that can be combined with other actions to automate tasks. This is sometimes called a command in other macro languages.)';
  290.             sTemp=L_defAction_TEXT;
  291.             break;
  292.         case 'defActionArgument':
  293.             L_defActionArgument_TEXT='(action argument: Additional information required by some macro actions. For example, the object affected by the action or special conditions under which the action is carried out.)';
  294.             sTemp=L_defActionArgument_TEXT;
  295.             break;
  296.         case 'defActionList':
  297.             L_defActionList_TEXT='(action list: The list that appears when you click the arrow in the Action column of the Macro window.)';
  298.             sTemp=L_defActionList_TEXT;
  299.             break;
  300.         case 'defActionQuery':
  301.             L_defActionQuery_TEXT='(action query: A query that copies or changes data. Action queries include append, delete, make-table, and update queries. They are identified by an exclamation point (!) next to their names in the Database window.)';
  302.             sTemp=L_defActionQuery_TEXT;
  303.             break;
  304.         case 'defActionRow':
  305.             L_defActionRow_TEXT='(action row: A row in the upper part of the Macro window in which you enter macro names, actions, conditions, and comments associated with a particular macro or macro group.)';
  306.             sTemp=L_defActionRow_TEXT;
  307.             break;
  308.         case 'defAdminAccount':
  309.             L_defAdminAccount_TEXT='(Admin account: The default user account. When you install Access, the Setup program automatically includes the Admin user account in the workgroup information file that it creates.)';
  310.             sTemp=L_defAdminAccount_TEXT;
  311.             break;
  312.         case 'defAdminsGroup':
  313.             L_defAdminsGroup_TEXT='(Admins group: The system administrator\'s group account, which retains full permissions on all databases used by a workgroup. The Setup program automatically adds the default Admin user account to the Admins group.)';
  314.             sTemp=L_defAdminsGroup_TEXT;
  315.             break;
  316.         case 'defAdvancedFilterSort':
  317.             L_defAdvancedFilterSort_TEXT='(Advanced Filter/Sort window: A window in which you can create a filter from scratch. You enter criteria expressions in the filter design grid to restrict the records in the open form or datasheet to a subset of records that meet the criteria.)';
  318.             sTemp=L_defAdvancedFilterSort_TEXT;
  319.             break;
  320.         case 'defAggregateFunction':
  321.             L_defAggregateFunction_TEXT='(aggregate function: A function, such as <b>Sum</b>, <b>Count</b>, <b>Avg</b>, or <b>Var</b>, that you use to calculate totals.)';
  322.             sTemp=L_defAggregateFunction_TEXT;
  323.             break;
  324.         case 'defAppendQuery':
  325.             L_defAppendQuery_TEXT='(append query: An action query that adds the records in a query\'s result set to the end of an existing table.)';
  326.             sTemp=L_defAppendQuery_TEXT;
  327.             break;
  328.         case 'defApplicationBackground':
  329.             L_defApplicationBackground_TEXT='(application background: The background area of an application window. In Access, this is the screen area behind the Database window or any other open window, but it is contained within the Access application window.)';
  330.             sTemp=L_defApplicationBackground_TEXT;
  331.             break;
  332.         case 'defAttachedTable':
  333.             L_defAttachedTable_TEXT='(linked table: A table stored in a file outside the open database from which Access can access records. You can add, delete, and edit records in a linked table, but you cannot change its structure.)';
  334.             sTemp=L_defAttachedTable_TEXT;
  335.             break;
  336.         case 'defAttachLink':
  337.             L_defAttachLink_TEXT='(link (tables): An action that establishes a connection to data from another application so that you can view and edit the data in both the original application and in Access.)';
  338.             sTemp=L_defAttachLink_TEXT;
  339.             break;
  340.         case 'defAutoformat':
  341.             L_defAutoformat_TEXT='(autoformat: A collection of formats that determines the appearance of the controls and sections in a form or report.)';
  342.             sTemp=L_defAutoformat_TEXT;
  343.             break;
  344.         case 'defAutomaticLink':
  345.             L_defAutomaticLink_TEXT='(automatic link: A link from an OLE object in Access to an OLE server that automatically updates the object in Access when the information in the object file changes.)';
  346.             sTemp=L_defAutomaticLink_TEXT;
  347.             break;
  348.         case 'defAutoNumber':
  349.             L_defAutoNumber_TEXT='(AutoNumber data type: In a Microsoft Access database, a field data type that automatically stores a unique number for each record as it\'s added to a table. Three kinds of numbers can be generated: sequential, random, and Replication ID.)';
  350.             sTemp=L_defAutoNumber_TEXT;
  351.             break;
  352.         case 'defBitMask':
  353.             L_defBitMask_TEXT='(bit mask: A value that is used with bitwise operators (<b>And</b>, <b>Eqv</b>, <b>Imp</b>, <b>Not</b>, <b>Or</b>, and <b>Xor</b>) to test, set, or reset the state of individual bits in a bitwise field value.)';
  354.             sTemp=L_defBitMask_TEXT;
  355.             break;
  356.         case 'defBookmark':
  357.             L_defBookmark_TEXT='(Bookmark: A property of a <b>Recordset</b> object or a form that contains a binary string identifying the current record.)';
  358.             sTemp=L_defBookmark_TEXT;
  359.             break;
  360.         case 'defBoundColumn':
  361.             L_defBoundColumn_TEXT='(bound column: The column in a list box, combo box, or drop-down list box that\'s bound to the field specified by the control\'s <bterm>ControlSource</bterm> property.)';
  362.             sTemp=L_defBoundColumn_TEXT;
  363.             break;
  364.         case 'defBoundField':
  365.             L_defBoundField_TEXT='(bound control: A control used on a form, report, or data access page to display or modify data from a table, query, or SQL statement. The control\'s <bterm>ControlSource</bterm> property stores the field name to which the control is bound.)';
  366.             sTemp=L_defBoundField_TEXT;
  367.             break;
  368.         case 'defBoundObjectFrame':
  369.             L_defBoundObjectFrame_TEXT='(bound object frame: A control on a form or report that is used to display and manipulate OLE objects that are stored in tables.)';
  370.             sTemp=L_defBoundObjectFrame_TEXT;
  371.             break;
  372.         case 'defBuilder':
  373.             L_defBuilder_TEXT='(builder: An Access tool that simplifies a task. For example, you can quickly create a complex expression with the Expression Builder.)';
  374.             sTemp=L_defBuilder_TEXT;
  375.             break;
  376.         case 'defBuildingApplications':
  377.             L_defBuildingApplications_TEXT='(<i>Microsoft Access: Building Applications with Forms and Reports</i> contains additional information about Visual Basic, security, ActiveX controls, and delivering Access applications. It is available on the Microsoft Web site at www.microsoft.com.)';
  378.             sTemp=L_defBuildingApplications_TEXT;
  379.             break;
  380.         case 'defBuiltInToolbar':
  381.             L_defBuiltInToolbar_TEXT='(built-in toolbar: A toolbar that is part of Access when it\'s installed on your computer. In contrast, a custom toolbar is one that you create for your own application.)';
  382.             sTemp=L_defBuiltInToolbar_TEXT;
  383.             break;
  384.         case 'defByteDataType':
  385.             L_defByteDataType_TEXT='(Byte data type: An Access database data type that is used to hold small positive integers ranging from 0 to 255.)';
  386.             sTemp=L_defByteDataType_TEXT;
  387.             break;
  388.         case 'defCalculatedControl':
  389.             L_defCalculatedControl_TEXT='(calculated control: A control that is used on a form, report, or data access page to display the result of an expression. The result is recalculated each time there is a change in any of the values on which the expression is based.)';
  390.             sTemp=L_defCalculatedControl_TEXT;
  391.             break;
  392.         case 'defCalculatedField':
  393.             L_defCalculatedField_TEXT='(calculated field: A field, defined in a query, that displays the result of an expression rather than displaying stored data. The value is recalculated each time a value in the expression changes.)';
  394.             sTemp=L_defCalculatedField_TEXT;
  395.             break;
  396.         case 'defCallTree':
  397.             L_defCallTree_TEXT='(call tree: All modules that might be called by any procedure in the module in which code is currently running.)';
  398.             sTemp=L_defCallTree_TEXT;
  399.             break;
  400.         case 'defCascadeDelete':
  401.             L_defCascadeDelete_TEXT='(cascading delete: For relationships that enforce referential integrity between tables, the deletion of all related records in the related table or tables when a record in the primary table is deleted.)';
  402.             sTemp=L_defCascadeDelete_TEXT;
  403.             break;
  404.         case 'defCascadeUpdate':
  405.             L_defCascadeUpdate_TEXT='(cascading update: For relationships that enforce referential integrity between tables, the updating of all related records in the related table or tables when a record in the primary table is changed.)';
  406.             sTemp=L_defCascadeUpdate_TEXT;
  407.             break;
  408.         case 'defCascadingEvent':
  409.             L_defCascadingEvent_TEXT='(cascading event: A sequence of events caused by an event procedure directly or indirectly calling itself; also called an event cascade or a recursion. Be careful using cascading events, because they often result in stack-overflow or other run-time errors.)';
  410.             sTemp=L_defCascadingEvent_TEXT;
  411.             break;
  412.         case 'defChannelNumber':
  413.             L_defChannelNumber_TEXT='(channel number: An integer that corresponds to an open Dynamic Data Exchange (DDE) channel. Channel numbers are assigned by Microsoft Windows 95 or later, created with the <b>DDEInitiate</b> function, and used by other DDE functions and statements.)';
  414.             sTemp=L_defChannelNumber_TEXT;
  415.             break;
  416.         case 'defCheckBox':
  417.             L_defCheckBox_TEXT='(check box: A control that indicates whether an option is selected. A check mark appears in the box when the option is selected.)';
  418.             sTemp=L_defCheckBox_TEXT;
  419.             break;
  420.         case 'defClassName':
  421.             L_defClassName_TEXT='(class name: The name used to refer to a class module. If the class module is a form or report module, the class name is prefaced with the type of module. For example, Form_OrderForm.)';
  422.             sTemp=L_defClassName_TEXT;
  423.             break;
  424.         case 'defClassNameOLE':
  425.             L_defClassNameOLE_TEXT='(class name (OLE): A predefined name used to refer to an OLE object in Visual Basic. It consists of the name of the application used to create the OLE object, the object\'s type, and, optionally, the version number of the application. Example: Excel.Sheet.)';
  426.             sTemp=L_defClassNameOLE_TEXT;
  427.             break;
  428.         case 'defCodeStub':
  429.             L_defCodeStub_TEXT='(code stub: A segment of Visual Basic code that defines the beginning and end of a procedure.)';
  430.             sTemp=L_defCodeStub_TEXT;
  431.             break;
  432.         case 'defColumn':
  433.             L_defColumn_TEXT='(column: A location within a database table that stores a particular type of data. It is also the visual representation of a field in a datasheet, and in an Access database, the query design grid or the filter design grid.)';
  434.             sTemp=L_defColumn_TEXT;
  435.             break;
  436.         case 'defcolumnselector':
  437.             L_defcolumnselector_TEXT='(column selector: The horizontal bar at the top of a column. You can click a column selector to select an entire column in the query design grid or the filter design grid.)';
  438.             sTemp=L_defcolumnselector_TEXT;
  439.             break;
  440.         case 'defComboBox':
  441.             L_defComboBox_TEXT='(combo box: A control used on a form that provides the combined functionality of a list box and a text box. You can type a value, or you can click the control to display a list and then select an item from that list.)';
  442.             sTemp=L_defComboBox_TEXT;
  443.             break;
  444.         case 'defCommandButton':
  445.             L_defCommandButton_TEXT='(command button: A control that runs a macro, calls a Visual Basic function, or runs an event procedure. This is sometimes called a push button in other applications.)';
  446.             sTemp=L_defCommandButton_TEXT;
  447.             break;
  448.         case 'defComparisonOperator':
  449.             L_defComparisonOperator_TEXT='(comparison operator: An operator that is used to compare two values or expressions. For example, (less than), (greater than), and <b>=</b> (equal to).)';
  450.             sTemp=L_defComparisonOperator_TEXT;
  451.             break;
  452.         case 'defCompoundControl':
  453.             L_defCompoundControl_TEXT='(compound control: A control and an attached label, such as a text box with an attached label.)';
  454.             sTemp=L_defCompoundControl_TEXT;
  455.             break;
  456.         case 'defConnectionString':
  457.             L_defConnectionString_TEXT='(connection string: A string expression that is used to open an external database.)';
  458.             sTemp=L_defConnectionString_TEXT;
  459.             break;
  460.         case 'defContainerApplication':
  461.             L_defContainerApplication_TEXT='(OLE container: An application that contains a linked or embedded OLE object from another application. For example, if an OLE object in an Access database contains a Microsoft Excel worksheet, Access is the OLE container.)';
  462.             sTemp=L_defContainerApplication_TEXT;
  463.             break;
  464.         case 'defContinuousForm':
  465.             L_defContinuousForm_TEXT='(continuous form: A form that displays more than one record on the screen in Form view.)';
  466.             sTemp=L_defContinuousForm_TEXT;
  467.             break;
  468.         case 'defControlContainingHyperlink':
  469.             L_defControlContainingHyperlink_TEXT='(control containing a hyperlink: A control that makes it possible for a user to jump to a document, Web page, or object. For example, a text box that is bound to a field that contains hyperlinks.)';
  470.             sTemp=L_defControlContainingHyperlink_TEXT;
  471.             break;
  472.         case 'defCrosstabQuery':
  473.             L_defCrosstabQuery_TEXT='(crosstab query: A query that calculates a sum, average, count, or other type of total on records, and then groups the result by two types of information: one down the left side of the datasheet and the other across the top.)';
  474.             sTemp=L_defCrosstabQuery_TEXT;
  475.             break;
  476.         case 'defCurrencyDataType':
  477.             L_defCurrencyDataType_TEXT='(Currency data type: In a Microsoft Access database, a data type that is useful for calculations involving money or for fixed-point calculations in which accuracy is extremely important.)';
  478.             sTemp=L_defCurrencyDataType_TEXT;
  479.             break;
  480.         case 'defCurrentRecord':
  481.             L_defCurrentRecord_TEXT='(current record: The record in a recordset that you can modify or retrieve data from. There is only one current record in a recordset, but a recordset may have no current record, for example, after a record has been deleted from a dynaset-type recordset.)';
  482.             sTemp=L_defCurrentRecord_TEXT;
  483.             break;
  484.         case 'defCustomPropertiesDialog':
  485.             L_defCustomPropertiesDialog_TEXT='(custom properties dialog box: A custom property sheet that allows users to set properties for an ActiveX control.)';
  486.             sTemp=L_defCustomPropertiesDialog_TEXT;
  487.             break;
  488.         case 'defCustomToolbar':
  489.             L_defCustomToolbar_TEXT='(custom toolbar: A toolbar that you create for your application. In contrast, a built-in toolbar is part of Access when it\'s installed on your computer.)';
  490.             sTemp=L_defCustomToolbar_TEXT;
  491.             break;
  492.         case 'defDatabaseObjects':
  493.             L_defDatabaseObjects_TEXT='(database objects: An Access database contains objects such as tables, queries, forms, reports, pages, macros, and modules. An Access project contains objects such as forms, reports, pages, macros, and modules.)';
  494.             sTemp=L_defDatabaseObjects_TEXT;
  495.             break;
  496.         case 'defDatabaseWindow':
  497.             L_defDatabaseWindow_TEXT='(Database window: The window that appears when you open an Access database or an Access project. It displays shortcuts for creating new database objects and opening existing objects.)';
  498.             sTemp=L_defDatabaseWindow_TEXT;
  499.             break;
  500.         case 'defDataDefinitionQuery':
  501.             L_defDataDefinitionQuery_TEXT='(data-definition query: An SQL-specific query that contains data definition language (DDL) statements. These statements allow you to create or alter objects in the database.)';
  502.             sTemp=L_defDataDefinitionQuery_TEXT;
  503.             break;
  504.         case 'defDataItem':
  505.             L_defDataItem_TEXT='(data item: An application-specific piece of data that can be transferred over a (Dynamic Data Exchange) DDE channel.)';
  506.             sTemp=L_defDataItem_TEXT;
  507.             break;
  508.         case 'defDatasheet':
  509.             L_defDatasheet_TEXT='(datasheet: Data from a table, form, query, view, or stored procedure that is displayed in a row-and-column format.)';
  510.             sTemp=L_defDatasheet_TEXT;
  511.             break;
  512.         case 'defDatasheetView':
  513.             L_defDatasheetView_TEXT='(Datasheet view: A window that displays data from a table, form, query, view, or stored procedure in a row-and-column format. In Datasheet view, you can edit fields, add and delete data, and search for data.)';
  514.             sTemp=L_defDatasheetView_TEXT;
  515.             break;
  516.         case 'defDateDataType':
  517.             L_defDateDataType_TEXT='(Date/Time data type: An Access database data type that is used to hold date and time information.)';
  518.             sTemp=L_defDateDataType_TEXT;
  519.             break;
  520.         case 'defDeclarationsSection':
  521.             L_defDeclarationsSection_TEXT='(declarations section: The section of a module containing declarations that apply to every procedure in the module. It can include declarations for variables, constants, user-defined data types, and external procedures in a dynamic-link library.)';
  522.             sTemp=L_defDeclarationsSection_TEXT;
  523.             break;
  524.         case 'defDefaultProperty':
  525.             L_defDefaultProperty_TEXT='(default property: A property that you can set for a control so that each time a new control of that type is created, this property will have the same value.)';
  526.             sTemp=L_defDefaultProperty_TEXT;
  527.             break;
  528.         case 'defDefaultValue':
  529.             L_defDefaultValue_TEXT='(default value: A value that is automatically entered in a field or control when you add a new record. You can either accept the default value or override it by typing a value.)';
  530.             sTemp=L_defDefaultValue_TEXT;
  531.             break;
  532.         case 'defDeleteQuery':
  533.             L_defDeleteQuery_TEXT='(delete query: A query (SQL statement) that removes rows matching the criteria that you specify from one or more tables.)';
  534.             sTemp=L_defDeleteQuery_TEXT;
  535.             break;
  536.         case 'defDesignView':
  537.             L_defDesignView_TEXT='(Design view: A window that shows the design of these database objects: tables, queries, forms, reports, macros, and data access pages. In Design view, you can create new database objects and modify the design of existing ones.)';
  538.             sTemp=L_defDesignView_TEXT;
  539.             break;
  540.         case 'defDisabledField':
  541.             L_defDisabledField_TEXT='(disabled control: A control that appears dimmed on a form or data access page. A disabled control cannot get the focus and will not respond to mouse clicks.)';
  542.             sTemp=L_defDisabledField_TEXT;
  543.             break;
  544.         case 'defDLL':
  545.             L_defDLL_TEXT='(Dynamic Link Library: A set of routines that can be called from Visual Basic procedures and are loaded and linked into your application at run time.)';
  546.             sTemp=L_defDLL_TEXT;
  547.             break;
  548.         case 'defDomain':
  549.             L_defDomain_TEXT='(domain: A set of records that is defined by a table, a query, or an SQL expression. Domain aggregate functions return statistical information about a specific domain or set of records.)';
  550.             sTemp=L_defDomain_TEXT;
  551.             break;
  552.         case 'defDomainFunction':
  553.             L_defDomainFunction_TEXT='(domain aggregate function: A function, such as <b>DAvg</b> or <b>DMax</b>, that is used to calculate statistics over a set of records (a domain).)';
  554.             sTemp=L_defDomainFunction_TEXT;
  555.             break;
  556.         case 'defEcho':
  557.             L_defEcho_TEXT='(echo: The process of Access updating or repainting the screen while a macro is running.)';
  558.             sTemp=L_defEcho_TEXT;
  559.             break;
  560.         case 'defEmbed':
  561.             L_defEmbed_TEXT='(embed: To insert a copy of an OLE object from another application. The source of the object, called the OLE server, can be any application that supports object linking and embedding. Changes to an embedded object are not reflected in the original object.)';
  562.             sTemp=L_defEmbed_TEXT;
  563.             break;
  564.         case 'defEnabledDatabase':
  565.             L_defEnabledDatabase_TEXT='(enabled database: A previous-version database that has been opened in Access 2000 or later without converting its format. To change the design of the database, you must open it in the version of Access in which it was created.)';
  566.             sTemp=L_defEnabledDatabase_TEXT;
  567.             break;
  568.         case 'defExclusive':
  569.             L_defExclusive_TEXT='(exclusive: A type of access to data in a database that is shared over a network. When you open a database in exclusive mode, you prevent others from opening the database.)';
  570.             sTemp=L_defExclusive_TEXT;
  571.             break;
  572.         case 'defExpressionBuilder':
  573.             L_defExpressionBuilder_TEXT='(Expression Builder: An Access tool that you can use to create an expression. It includes a list of common expressions that you can select.)';
  574.             sTemp=L_defExpressionBuilder_TEXT;
  575.             break;
  576.         case 'defExternalDatabase':
  577.             L_defExternalDatabase_TEXT='(external database: The source of the table that is to be linked or imported to the current database, or the destination of a table that is to be exported.)';
  578.             sTemp=L_defExternalDatabase_TEXT;
  579.             break;
  580.         case 'defExternalTable':
  581.             L_defExternalTable_TEXT='(external table: A table outside the open Access database or Access project.)';
  582.             sTemp=L_defExternalTable_TEXT;
  583.             break;
  584.         case 'defFieldDataType':
  585.             L_defFieldDataType_TEXT='(field data type: A characteristic of a field that determines what kind of data it can store. For example, a field whose data type is Text can store data consisting of either text or number characters, but a Number field can  store only numerical data.)';
  586.             sTemp=L_defFieldDataType_TEXT;
  587.             break;
  588.         case 'defFieldList':
  589.             L_defFieldList_TEXT='(field list: A window that lists all the fields in the underlying record source or database object, except in data access page Design view. In data access page Design view, it lists all the record sources and their fields in the underlying database.)';
  590.             sTemp=L_defFieldList_TEXT;
  591.             break;
  592.         case 'defFieldSelector':
  593.             L_defFieldSelector_TEXT='(field selector: A small box or bar that you click to select an entire column in a datasheet.)';
  594.             sTemp=L_defFieldSelector_TEXT;
  595.             break;
  596.         case 'defFilter':
  597.             L_defFilter_TEXT='(filter: A set of criteria applied to data in order to display a subset of the data or to sort the data. In Access, you can use filtering techniques such as Filter By Selection and Filter By Form to filter data.)';
  598.             sTemp=L_defFilter_TEXT;
  599.             break;
  600.         case 'defFilterByForm':
  601.             L_defFilterByForm_TEXT='(Filter By Form: A technique for filtering data that uses a version of the current form or datasheet with empty fields in which you can type the values that you want the filtered records to contain.)';
  602.             sTemp=L_defFilterByForm_TEXT;
  603.             break;
  604.         case 'defFilterBySelection':
  605.             L_defFilterBySelection_TEXT='(Filter By Selection: A technique for filtering records in a form, datasheet, or data access page in which you retrieve only records that contain the selected value.)';
  606.             sTemp=L_defFilterBySelection_TEXT;
  607.             break;
  608.         case 'defFilterForInput':
  609.             L_defFilterForInput_TEXT='(Filter For Input: A technique for filtering records that uses a value or expression that you enter to find only records that contain the value or satisfy the expression.)';
  610.             sTemp=L_defFilterForInput_TEXT;
  611.             break;
  612.         case 'defFixedWidthText':
  613.             L_defFixedWidthText_TEXT='(fixed-width text file: A file containing data where each field has a fixed width.)';
  614.             sTemp=L_defFixedWidthText_TEXT;
  615.             break;
  616.         case 'defFloatingToolbar':
  617.             L_defFloatingToolbar_TEXT='(floating: Able to move freely as its own window. A floating window is always on top. Toolbars, menu bars, the toolbox, and palettes can float.)';
  618.             sTemp=L_defFloatingToolbar_TEXT;
  619.             break;
  620.         case 'defForeignKey':
  621.             L_defForeignKey_TEXT='(foreign key: One or more table fields (columns) that refer to the primary key field or fields in another table. A foreign key indicates how the tables are related.)';
  622.             sTemp=L_defForeignKey_TEXT;
  623.             break;
  624.         case 'defForeignTable':
  625.             L_defForeignTable_TEXT='(foreign table: A table (such as Customer Orders) that contains a foreign key field (such as CustomerID) that\'s the primary key field in another table (such as Customers) in the database and that is usually on the \"many\" side of a one-to-many relationship)';
  626.             sTemp=L_defForeignTable_TEXT;
  627.             break;
  628.         case 'defForm':
  629.             L_defForm_TEXT='(form: An Access database object on which you place controls for taking actions or for entering, displaying, and editing data in fields.)';
  630.             sTemp=L_defForm_TEXT;
  631.             break;
  632.         case 'defFormat':
  633.             L_defFormat_TEXT='(format: Specifies how data is displayed and printed. An Access database provides standard formats for specific data types, as does an Access project for the equivalent SQL data types. You can also create custom formats.)';
  634.             sTemp=L_defFormat_TEXT;
  635.             break;
  636.         case 'defFormModule':
  637.             L_defFormModule_TEXT='(form module: A module that includes code for all event procedures triggered by events occurring on a specific form or its controls.)';
  638.             sTemp=L_defFormModule_TEXT;
  639.             break;
  640.         case 'defFormProperties':
  641.             L_defFormProperties_TEXT='(form properties: Attributes of a form that affect its appearance or behavior. For example, the <b>DefaultView</b> property is a form property that determines whether a form will automatically open in Form view or Datasheet view.)';
  642.             sTemp=L_defFormProperties_TEXT;
  643.             break;
  644.         case 'defFormSelector':
  645.             L_defFormSelector_TEXT='(form selector: The box where the rulers meet, in the upper-left corner of a form in Design view. Use the box to perform form-level operations, such as selecting the form.)';
  646.             sTemp=L_defFormSelector_TEXT;
  647.             break;
  648.         case 'defFormView':
  649.             L_defFormView_TEXT='(Form view: A window that displays a form to show or accept data. Form view is the primary means of adding and modifying data in tables. You can also change the design of a form in this view.)';
  650.             sTemp=L_defFormView_TEXT;
  651.             break;
  652.         case 'defFormWindow':
  653.             L_defFormWindow_TEXT='(Form window: A window in which you work with forms in Design view, Form view, Datasheet view, or Print Preview.)';
  654.             sTemp=L_defFormWindow_TEXT;
  655.             break;
  656.         case 'defFrontBackEndApp':
  657.             L_defFrontBackEndApp_TEXT='(front-end/back-end application: An application consisting of a \"back-end\" database file that contains tables, and copies of a \"front-end\" database file that contain all other database objects with links to the \"back-end\" tables.)';
  658.             sTemp=L_defFrontBackEndApp_TEXT;
  659.             break;
  660.         case 'defFunctionProcedure':
  661.             L_defFunctionProcedure_TEXT='(<bterm>Function</bterm> procedure: A procedure that returns a value and that can be used in an expression. You declare a function with the <bterm>Function</bterm> statement and end it with the <bterm>End Function</bterm> statement.)';
  662.             sTemp=L_defFunctionProcedure_TEXT;
  663.             break;
  664.         case 'defGlobalMenuBar':
  665.             L_defGlobalMenuBar_TEXT='(global menu bar: A special custom menu bar that replaces the built-in menu bar in all windows in your application, except where you\'ve specified a custom menu bar for a form or report.)';
  666.             sTemp=L_defGlobalMenuBar_TEXT;
  667.             break;
  668.         case 'defGlobalShortcutMenu':
  669.             L_defGlobalShortcutMenu_TEXT='(global shortcut menu: A custom shortcut menu that replaces the built-in shortcut menu for the following objects: fields in table and query datasheets; forms and form controls in Form view, Datasheet view, and Print Preview; and reports in Print Preview.)';
  670.             sTemp=L_defGlobalShortcutMenu_TEXT;
  671.             break;
  672.         case 'defGlobalVariable':
  673.             L_defGlobalVariable_TEXT='(public variable: A variable that you declare with the <b>Public</b> keyword in the Declarations section of a module. A public variable can be shared by all the procedures in every module in a database.)';
  674.             sTemp=L_defGlobalVariable_TEXT;
  675.             break;
  676.         case 'defGraph':
  677.             L_defGraph_TEXT='(chart: A graphical representation of data in a form, report, or data access page.)';
  678.             sTemp=L_defGraph_TEXT;
  679.             break;
  680.         case 'defGrid':
  681.             L_defGrid_TEXT='(grid (Design view): An arrangement of vertical and horizontal dotted and solid lines that help you position controls precisely when you design a form, report, or data access page.)';
  682.             sTemp=L_defGrid_TEXT;
  683.             break;
  684.         case 'defGroupAccount':
  685.             L_defGroupAccount_TEXT='(group account: A collection of user accounts in a workgroup, identified by group name and personal ID (PID). Permissions assigned to a group apply to all users in the group.)';
  686.             sTemp=L_defGroupAccount_TEXT;
  687.             break;
  688.         case 'defGroupLevel':
  689.             L_defGroupLevel_TEXT='(group level: The depth at which a group in a report or data access page is nested inside other groups. Groups are nested when a set of records is grouped by more than one field, expression, or group record source.)';
  690.             sTemp=L_defGroupLevel_TEXT;
  691.             break;
  692.         case 'defHandle':
  693.             L_defHandle_TEXT='(handle: A unique <b>Integer</b> value (<b>Long</b> in a 32-bit environment) you use to identify and access a Form or Report window. Use the <b>hWnd</b> property to return the handle.)';
  694.             sTemp=L_defHandle_TEXT;
  695.             break;
  696.         case 'defHyperlinkAddress':
  697.             L_defHyperlinkAddress_TEXT='(hyperlink address: The path to a destination such as an object, document, or Web page. A hyperlink address can be a URL (address to an Internet or intranet site) or a UNC network path (address to a file on a local area network).)';
  698.             sTemp=L_defHyperlinkAddress_TEXT;
  699.             break;
  700.         case 'defHyperlinkDataType':
  701.             L_defHyperlinkDataType_TEXT='(Hyperlink data type: A data type for an Access database field that stores hyperlink addresses. An address can have up to four parts and is written using the following format: <i>displaytext</i><b>#</b><i>address</i><b>#</b><i>subaddress</i><b>#</b>.)';
  702.             sTemp=L_defHyperlinkDataType_TEXT;
  703.             break;
  704.         case 'defIDCHTXfiles':
  705.             L_defIDCHTXfiles_TEXT='(IDC/HTX files: Microsoft Internet Information Server uses an IDC file and an HTX file to retrieve data from an ODBC data source and format it as an HTML document.)';
  706.             sTemp=L_defIDCHTXfiles_TEXT;
  707.             break;
  708.         case 'defIdentifier':
  709.             L_defIdentifier_TEXT='(identifier (expressions): An element of an expression that refers to the value of a field, control, or property. For example, Forms![Orders]![OrderID] is an identifier that refers to the value in the OrderID control on the Orders form.)';
  710.             sTemp=L_defIdentifier_TEXT;
  711.             break;
  712.         case 'defImageFrame':
  713.             L_defImageFrame_TEXT='(image control: A control that is used to display a picture on a form, report, or data access page.)';
  714.             sTemp=L_defImageFrame_TEXT;
  715.             break;
  716.         case 'defImport':
  717.             L_defImport_TEXT='(import: To copy data from a text file, spreadsheet, or database table into an Access table. You can use the imported data to create a new table, or you can append (add) it to an existing table that has a matching data structure.)';
  718.             sTemp=L_defImport_TEXT;
  719.             break;
  720.         case 'defImportExportSpec':
  721.             L_defImportExportSpec_TEXT='(import/export specification: A specification that stores the information that Access needs to import or export a fixed-width or delimited text file.)';
  722.             sTemp=L_defImportExportSpec_TEXT;
  723.             break;
  724.         case 'defIndex':
  725.             L_defIndex_TEXT='(index: A feature that speeds up searching and sorting in a table based on key values and can enforce uniqueness on the rows in a table. The primary key of a table is automatically indexed. Some fields can\'t be indexed because of their data type.)';
  726.             sTemp=L_defIndex_TEXT;
  727.             break;
  728.         case 'defIndexesWindow':
  729.             L_defIndexesWindow_TEXT='(Indexes window: In an Access database, a window in which you can view or edit a table\'s indexes or create multiple-field indexes.)';
  730.             sTemp=L_defIndexesWindow_TEXT;
  731.             break;
  732.         case 'defInPlaceActivation':
  733.             L_defInPlaceActivation_TEXT='(in-place activation: Activation of an OLE object\'s OLE server from within a field or control. For example, you can play a waveform audio (.wav) file contained in a control by double-clicking the control.)';
  734.             sTemp=L_defInPlaceActivation_TEXT;
  735.             break;
  736.         case 'defInputMask':
  737.             L_defInputMask_TEXT='(input mask: A format that consists of literal display characters (such as parentheses, periods, and hyphens) and mask characters that specify where data is to be entered as well as what kind of data and how many characters are allowed.)';
  738.             sTemp=L_defInputMask_TEXT;
  739.             break;
  740.         case 'defInstance':
  741.             L_defInstance_TEXT='(instance: An object that is created from the class that contains its definition. For example, multiple instances of a form class share the same code and are loaded with the same controls that were used to design the form class.)';
  742.             sTemp=L_defInstance_TEXT;
  743.             break;
  744.         case 'defIntegerDataType':
  745.             L_defIntegerDataType_TEXT='(Integer data type: A fundamental data type that holds integers. An <b>Integer</b> variable is stored as a 16-bit (2-byte) number ranging in value from -32,768 to 32,767.)';
  746.             sTemp=L_defIntegerDataType_TEXT;
  747.             break;
  748.         case 'defIntrinsicConstant':
  749.             L_defIntrinsicConstant_TEXT='(intrinsic constant: A constant that is supplied by Access, VBA, ADO, or DAO. These constants are available in the Object Browser by clicking <b><globals></b> in each of these libraries.)';
  750.             sTemp=L_defIntrinsicConstant_TEXT;
  751.             break;
  752.         case 'defKeyboardHandler':
  753.             L_defKeyboardHandler_TEXT='(keyboard handler: Code that determines and responds to keys or key combinations pressed by the user.)';
  754.             sTemp=L_defKeyboardHandler_TEXT;
  755.             break;
  756.         case 'defLabel':
  757.             L_defLabel_TEXT='(label: A control that displays descriptive text, such as a title, a caption, or instructions, on a form, report, or data access page. Labels may or may not be attached to another control.)';
  758.             sTemp=L_defLabel_TEXT;
  759.             break;
  760.         case 'defLeftOuterJoin':
  761.             L_defLeftOuterJoin_TEXT='(left outer join: An outer join in which all the records from the left side of the LEFT JOIN operation in the query\'s SQL statement are added to the query\'s results, even if there are no matching values in the joined field from the table on the right.)';
  762.             sTemp=L_defLeftOuterJoin_TEXT;
  763.             break;
  764.         case 'defLibraryDatabase':
  765.             L_defLibraryDatabase_TEXT='(library database: A collection of procedures and database objects that you can call from any application. In order to use the items in the library, you must first establish a reference from the current database to the library database.)';
  766.             sTemp=L_defLibraryDatabase_TEXT;
  767.             break;
  768.         case 'defLink':
  769.             L_defLink_TEXT='(OLE/DDE link: A connection between an OLE object and its OLE server, or between a Dynamic Data Exchange (DDE) source document and a destination document.)';
  770.             sTemp=L_defLink_TEXT;
  771.             break;
  772.         case 'defListIndex':
  773.             L_defListIndex_TEXT='(list index: The sequence of numbers for items in a list, starting with 0 for the first item, 1 for the second item, and so on.)';
  774.             sTemp=L_defListIndex_TEXT;
  775.             break;
  776.         case 'defLocked':
  777.             L_defLocked_TEXT='(locked: The condition of a record, recordset, or database that makes it read-only to all users except the user currently modifying it.)';
  778.             sTemp=L_defLocked_TEXT;
  779.             break;
  780.         case 'defLookupField':
  781.             L_defLookupField_TEXT='(Lookup field: A field, used on a form or report in an Access database, that either displays a list of values retrieved from a table or query, or stores a static set of values.)';
  782.             sTemp=L_defLookupField_TEXT;
  783.             break;
  784.         case 'defMacroGroup':
  785.             L_defMacroGroup_TEXT='(macro group: A collection of related macros that are stored together under a single macro name. The collection is often referred to simply as a macro.)';
  786.             sTemp=L_defMacroGroup_TEXT;
  787.             break;
  788.         case 'defMainForm':
  789.             L_defMainForm_TEXT='(main form: A form that contains one or more subforms.)';
  790.             sTemp=L_defMainForm_TEXT;
  791.             break;
  792.         case 'defMakeTableQuery':
  793.             L_defMakeTableQuery_TEXT='(make-table query: A query (SQL statement) that creates a new table and then creates records (rows) in it by copying records from an existing table.)';
  794.             sTemp=L_defMakeTableQuery_TEXT;
  795.             break;
  796.         case 'defManualLink':
  797.             L_defManualLink_TEXT='(manual link: A link that requires you to take action to update your data after the data in the source document changes.)';
  798.             sTemp=L_defManualLink_TEXT;
  799.             break;
  800.         case 'defManyToManyRelationship':
  801.             L_defManyToManyRelationship_TEXT='(many-to-many relationship: An association between two tables in which one record in either table can relate to many records in the other table. To establish one, create a third table and add the primary key fields from the other two tables to this table.)';
  802.             sTemp=L_defManyToManyRelationship_TEXT;
  803.             break;
  804.         case 'defMemoDataType':
  805.             L_defMemoDataType_TEXT='(Memo data type: In a Microsoft Access database, this is a field data type. Memo fields can contain up to 65,535 characters.)';
  806.             sTemp=L_defMemoDataType_TEXT;
  807.             break;
  808.         case 'defModuleLevel':
  809.             L_defModuleLevel_TEXT='(module level: Describes any variable or constant declared in the Declarations section of a module or outside of a procedure. Variables or constants declared at the module level are available to all procedures in a module.)';
  810.             sTemp=L_defModuleLevel_TEXT;
  811.             break;
  812.         case 'defModuleLevelVariable':
  813.             L_defModuleLevelVariable_TEXT='(module-level variable: A variable that\'s declared in the Declarations section of a module by using the <b>Private</b> keyword. These variables are available to all procedures in the module.)';
  814.             sTemp=L_defModuleLevelVariable_TEXT;
  815.             break;
  816.         case 'defMoveMode':
  817.             L_defMoveMode_TEXT='(Move mode: The mode in which you can move column(s) in Datasheet view by using the left and right arrow keys.)';
  818.             sTemp=L_defMoveMode_TEXT;
  819.             break;
  820.         case 'defMSAccessObject':
  821.             L_defMSAccessObject_TEXT='(Microsoft Access object: An object defined by Access that relates to Access, its interface, or an application\'s forms, reports, and data access pages, and that you use to program the elements of the interface used for entering and displaying data.)';
  822.             sTemp=L_defMSAccessObject_TEXT;
  823.             break;
  824.         case 'defMSJetDatabaseEngine':
  825.             L_defMSJetDatabaseEngine_TEXT='(Microsoft Jet database engine: The part of the Access database system that retrieves and stores data in user and system databases. It can be thought of as a data manager upon which database systems, such as Access, are built.)';
  826.             sTemp=L_defMSJetDatabaseEngine_TEXT;
  827.             break;
  828.         case 'defMultiUserDatabase':
  829.             L_defMultiUserDatabase_TEXT='(multiuser (shared) database: A database that permits more than one user to access and modify the same set of data at the same time.)';
  830.             sTemp=L_defMultiUserDatabase_TEXT;
  831.             break;
  832.         case 'defNavigationButtons':
  833.             L_defNavigationButtons_TEXT='(navigation buttons: The buttons that you use to move through records. They are located in the lower-left corner of the Datasheet view and Form view windows. They are also available during previewing so that you can move through the pages of your document.)';
  834.             sTemp=L_defNavigationButtons_TEXT;
  835.             break;
  836.         case 'defNormalize':
  837.             L_defNormalize_TEXT='(normalize: To minimize the duplication of information in a relational database through effective table design. You can use the Table Analyzer Wizard to normalize your database.)';
  838.             sTemp=L_defNormalize_TEXT;
  839.             break;
  840.         case 'defNull':
  841.             L_defNull_TEXT='(<b>Null</b>: A value you can enter in a field or use in expressions or queries to indicate missing or unknown data. In Visual Basic, the <b>Null</b> keyword indicates a <b>Null</b> value. Some fields, such as primary key fields, can\'t contain <b>Null</b>.)';
  842.             sTemp=L_defNull_TEXT;
  843.             break;
  844.         case 'defNullField':
  845.             L_defNullField_TEXT='(null field: A field containing a <b>Null</b> value. A null field isn\'t the same as a field that contains a zero-length string (\" \") or a field with a value of 0.)';
  846.             sTemp=L_defNullField_TEXT;
  847.             break;
  848.         case 'defNumberDataType':
  849.             L_defNumberDataType_TEXT='(Number data type: In a Microsoft Access database, a field data type designed for numerical data that will be used in mathematical calculations. Use the Currency data type, however, to display or calculate currency values.)';
  850.             sTemp=L_defNumberDataType_TEXT;
  851.             break;
  852.         case 'defObjectApplication':
  853.             L_defObjectApplication_TEXT='(OLE server: An application or DLL that supplies a linked or embedded OLE object to another application. For example, if an OLE object in an Access database contains a Microsoft Excel worksheet, Excel is the OLE server.)';
  854.             sTemp=L_defObjectApplication_TEXT;
  855.             break;
  856.         case 'defObjectDataType':
  857.             L_defObjectDataType_TEXT='(Object data type: A fundamental data type representing any object that can be recognized by Visual Basic. Although you can declare any object variable as type <b>Object</b>, it is best to declare object variables according to their specific types.)';
  858.             sTemp=L_defObjectDataType_TEXT;
  859.             break;
  860.         case 'defObjectLibrary':
  861.             L_defObjectLibrary_TEXT='(object library: A file that contains definitions of objects and their methods and properties. The file that contains an object library typically has the extension .olb.)';
  862.             sTemp=L_defObjectLibrary_TEXT;
  863.             break;
  864.         case 'defODBCConnectStringBuilder':
  865.             L_defODBCConnectStringBuilder_TEXT='(ODBC Connection String Builder: An Access tool that you can use to connect to an SQL database when you create a pass-through query. If you save the query, the connection string is stored with the query.)';
  866.             sTemp=L_defODBCConnectStringBuilder_TEXT;
  867.             break;
  868.         case 'defODBCDatabase':
  869.             L_defODBCDatabase_TEXT='(ODBC database: A database for which an Open Database Connectivity (ODBC) driver that you can use for importing, linking to, or exporting data is supplied.)';
  870.             sTemp=L_defODBCDatabase_TEXT;
  871.             break;
  872.         case 'defODBCDataSource':
  873.             L_defODBCDataSource_TEXT='(ODBC data source: Data and the information needed to access that data from programs and databases that support the Open Database Connectivity (ODBC) protocol.)';
  874.             sTemp=L_defODBCDataSource_TEXT;
  875.             break;
  876.         case 'defODBCDirect':
  877.             L_defODBCDirect_TEXT='(ODBCDirect: A technology that allows you to access ODBC data sources directly by using DAO features that bypass the Microsoft Jet database engine.)';
  878.             sTemp=L_defODBCDirect_TEXT;
  879.             break;
  880.         case 'defOLEObject':
  881.             L_defOLEObject_TEXT='(OLE object: An object supporting the OLE protocol for object linking and embedding. An OLE object from an OLE server (for example, a Windows Paint picture or a Microsoft Excel spreadsheet) can be linked or embedded in a field, form, or report.)';
  882.             sTemp=L_defOLEObject_TEXT;
  883.             break;
  884.         case 'defOLEObjectDataType':
  885.             L_defOLEObjectDataType_TEXT='(OLE Object data type: A field data type that you use for objects created in other applications that can be linked or embedded (inserted) in an Access database.)';
  886.             sTemp=L_defOLEObjectDataType_TEXT;
  887.             break;
  888.         case 'defOneToMany':
  889.             L_defOneToMany_TEXT='(one-to-many relationship: An association between two tables in which the primary key value of each record in the primary table corresponds to the value in the matching field or fields of many records in the related table.)';
  890.             sTemp=L_defOneToMany_TEXT;
  891.             break;
  892.         case 'defOneToOne':
  893.             L_defOneToOne_TEXT='(one-to-one relationship: An association between two tables in which the primary key value of each record in the primary table corresponds to the value in the matching field or fields of one, and only one, record in the related table.)';
  894.             sTemp=L_defOneToOne_TEXT;
  895.             break;
  896.         case 'defOptionButton':
  897.             L_defOptionButton_TEXT='(option button: A control, also called a radio button, that is typically used as part of an option group to present alternatives on a form, report, or data access page. The user cannot select more than one option.)';
  898.             sTemp=L_defOptionButton_TEXT;
  899.             break;
  900.         case 'defOptionGroup':
  901.             L_defOptionGroup_TEXT='(option group: A frame that can contain check boxes, toggle buttons, and option buttons on a form, report, or data access page. You use an option group to present alternatives from which the user can select a single option.)';
  902.             sTemp=L_defOptionGroup_TEXT;
  903.             break;
  904.         case 'defOuterJoin':
  905.             L_defOuterJoin_TEXT='(outer join: A join in which each matching record from two tables is combined into one record in the query\'s results, and one table contributes all of its records, even if the values in the joined field don\'t match those in the other table.)';
  906.             sTemp=L_defOuterJoin_TEXT;
  907.             break;
  908.         case 'defOwner':
  909.             L_defOwner_TEXT='(owner: When security is being used, the user account that has control over a database or database object. By default, the user account that created a database or database object is the owner.)';
  910.             sTemp=L_defOwner_TEXT;
  911.             break;
  912.         case 'defPage':
  913.             L_defPage_TEXT='(page (data storage): A portion of the database (.mdb) file in which record data is stored. Depending on the size of the records, a page (4 KB in size) may contain more than one record.)';
  914.             sTemp=L_defPage_TEXT;
  915.             break;
  916.         case 'defParameterQuery':
  917.             L_defParameterQuery_TEXT='(parameter query: A query in which a user interactively specifies one or more criteria values. A parameter query is not a separate kind of query; rather, it extends the flexibility of a query.)';
  918.             sTemp=L_defParameterQuery_TEXT;
  919.             break;
  920.         case 'defPassThroughQuery':
  921.             L_defPassThroughQuery_TEXT='(pass-through query: An SQL-specific query you use to send commands directly to an ODBC database server. By using pass-through queries, you work directly with the tables on the server instead of having the Microsoft Jet database engine process the data.)';
  922.             sTemp=L_defPassThroughQuery_TEXT;
  923.             break;
  924.         case 'defPermissions':
  925.             L_defPermissions_TEXT='(permissions: A set of attributes that specifies what kind of access a user has to data or objects in a database.)';
  926.             sTemp=L_defPermissions_TEXT;
  927.             break;
  928.         case 'defPin':
  929.             L_defPin_TEXT='(personal ID: A case-sensitive alphanumeric string that is 4 to 20 characters long and that Access uses in combination with the account name to identify a user or group in an Access workgroup.)';
  930.             sTemp=L_defPin_TEXT;
  931.             break;
  932.         case 'defPivotTable':
  933.             L_defPivotTable_TEXT='(PivotTable form: An interactive table that summarizes large amounts of data by using format and calculation methods that you choose. You can rotate its row and column headings to view the data in different ways, similar to an Excel PivotTable report.)';
  934.             sTemp=L_defPivotTable_TEXT;
  935.             break;
  936.         case 'defPlusPointer':
  937.             L_defPlusPointer_TEXT='(plus pointer: The pointer that appears when you move the pointer to the left edge of a field in a datasheet. When the plus pointer appears, you can click to select the entire field.)';
  938.             sTemp=L_defPlusPointer_TEXT;
  939.             break;
  940.         case 'defPopup':
  941.             L_defPopup_TEXT='(pop-up form: A form that stays on top of other windows. A pop-up form can be modal or modeless.)';
  942.             sTemp=L_defPopup_TEXT;
  943.             break;
  944.         case 'defPrimaryKey':
  945.             L_defPrimaryKey_TEXT='(primary key: One or more fields (columns) whose values uniquely identify each record in a table. A primary key cannot allow <b>Null</b> values and must always have a unique index. A primary key is used to relate a table to foreign keys in other tables.)';
  946.             sTemp=L_defPrimaryKey_TEXT;
  947.             break;
  948.         case 'defPrimaryTable':
  949.             L_defPrimaryTable_TEXT='(primary table: The \"one\" side of two related tables in a one-to-many relationship. A primary table should have a primary key and each record should be unique.)';
  950.             sTemp=L_defPrimaryTable_TEXT;
  951.             break;
  952.         case 'defPrivateProcedure':
  953.             L_defPrivateProcedure_TEXT='(private procedure: A <b>Sub</b> or <b>Function</b> procedure is declared as private by using the <b>Private</b> keyword in a <b>Declare</b> statement. Private procedures are available for use only by other procedures within the same module.)';
  954.             sTemp=L_defPrivateProcedure_TEXT;
  955.             break;
  956.         case 'defProcedure':
  957.             L_defProcedure_TEXT='(procedure: A sequence of declarations and statements in a module that are executed as a unit. Procedures in Visual Basic include both <b>Sub</b> and <b>Function</b> procedures.)';
  958.             sTemp=L_defProcedure_TEXT;
  959.             break;
  960.         case 'defProcedureLevel':
  961.             L_defProcedureLevel_TEXT='(procedure level: Describes any variables or constants declared within a procedure. Variables and constants declared within a procedure are available to that procedure only.)';
  962.             sTemp=L_defProcedureLevel_TEXT;
  963.             break;
  964.         case 'defProcedureLevelVariable':
  965.             L_defProcedureLevelVariable_TEXT='(procedure-level variable: A variable that\'s declared within a procedure. Procedure-level variables are always private to the procedure in which they\'re declared.)';
  966.             sTemp=L_defProcedureLevelVariable_TEXT;
  967.             break;
  968.         case 'defProject':
  969.             L_defProject_TEXT='(project: The set of all code modules in a database, including standard modules and class modules. By default, the project has the same name as the database.)';
  970.             sTemp=L_defProject_TEXT;
  971.             break;
  972.         case 'defPropertySheet':
  973.             L_defPropertySheet_TEXT='(property sheet: A window that is used to view or modify the properties of various objects such as tables, queries, fields, forms, reports, data access pages, and controls.)';
  974.             sTemp=L_defPropertySheet_TEXT;
  975.             break;
  976.         case 'defPublish':
  977.             L_defPublish_TEXT='(publish: The process of exporting datasheets, forms, or reports to static HTML or server-generated HTML, or creating data access pages and setting up these files and all related files as a Web application on a Web server such as Microsoft IIS.)';
  978.             sTemp=L_defPublish_TEXT;
  979.             break;
  980.         case 'defQBEGrid':
  981.             L_defQBEGrid_TEXT='(design grid: The grid that you use to design a query or filter in query Design view or in the Advanced Filter/Sort window. For queries, this grid was formerly known as the QBE grid.)';
  982.             sTemp=L_defQBEGrid_TEXT;
  983.             break;
  984.         case 'defQuery':
  985.             L_defQuery_TEXT='(query: A question about the data stored in your tables, or a request to perform an action on the data. A query can bring together data from multiple tables to serve as the source of data for a form, report, or data access page.)';
  986.             sTemp=L_defQuery_TEXT;
  987.             break;
  988.         case 'defQueryWindow':
  989.             L_defQueryWindow_TEXT='(Query window: A window in which you work with queries in Design view, Datasheet view, SQL view, or Print Preview.)';
  990.             sTemp=L_defQueryWindow_TEXT;
  991.             break;
  992.         case 'defRecordNumberBox':
  993.             L_defRecordNumberBox_TEXT='(record number box: A small box that displays the current record number in the lower-left corner in Datasheet view and Form view. To move to a specific record, you can type the record number in the box, and press ENTER.)';
  994.             sTemp=L_defRecordNumberBox_TEXT;
  995.             break;
  996.         case 'defRecordSelector':
  997.             L_defRecordSelector_TEXT='(record selector: A small box or bar to the left of a record that you can click to select the entire record in Datasheet view and Form view.)';
  998.             sTemp=L_defRecordSelector_TEXT;
  999.             break;
  1000.         case 'defRecordset':
  1001.             L_defRecordset_TEXT='(recordset: The collective name given to table-, dynaset-, and snapshot-type <b>Recordset</b> objects, which are sets of records that behave as objects.)';
  1002.             sTemp=L_defRecordset_TEXT;
  1003.             break;
  1004.         case 'defRecordSource':
  1005.             L_defRecordSource_TEXT='(record source: The underlying source of data for a form, report, or data access page. In an Access database, it could be a table, query, or SQL statement. In an Access project, it could be a table, view, SQL statement, or stored procedure.)';
  1006.             sTemp=L_defRecordSource_TEXT;
  1007.             break;
  1008.         case 'defReferencedDatabase':
  1009.             L_defReferencedDatabase_TEXT='(referenced database: The Access database to which the user has established a reference from the current database. The user can create a reference to a database and then call procedures within standard modules in that database.)';
  1010.             sTemp=L_defReferencedDatabase_TEXT;
  1011.             break;
  1012.         case 'defReferencingDatabase':
  1013.             L_defReferencingDatabase_TEXT='(referencing database: The current Access database from which the user has created a reference to another Access database. The user can create a reference to a database and then call procedures within standard modules in that database.)';
  1014.             sTemp=L_defReferencingDatabase_TEXT;
  1015.             break;
  1016.         case 'defReferentialIntegrity':
  1017.             L_defReferentialIntegrity_TEXT='(referential integrity: Rules that you follow to preserve the defined relationships between tables when you enter or delete records.)';
  1018.             sTemp=L_defReferentialIntegrity_TEXT;
  1019.             break;
  1020.         case 'defRefresh':
  1021.             L_defRefresh_TEXT='(refresh: In an Access database, to redisplay the records in a form or datasheet to reflect changes that other users have made. In an Access project, to rerun a query underlying the active form or datasheet in order to reflect changes to records.)';
  1022.             sTemp=L_defRefresh_TEXT;
  1023.             break;
  1024.         case 'defRelationship':
  1025.             L_defRelationship_TEXT='(relationship: An association that is established between common fields (columns) in two tables. A relationship can be one-to-one, one-to-many, or many-to-many.)';
  1026.             sTemp=L_defRelationship_TEXT;
  1027.             break;
  1028.         case 'defRelationshipsWindow':
  1029.             L_defRelationshipsWindow_TEXT='(Relationships window: A window in which you view, create, and modify relationships between tables and queries.)';
  1030.             sTemp=L_defRelationshipsWindow_TEXT;
  1031.             break;
  1032.         case 'defRepaint':
  1033.             L_defRepaint_TEXT='(repaint: To redraw the screen. The <b>Repaint</b> method completes any pending screen updates for a specified form.)';
  1034.             sTemp=L_defRepaint_TEXT;
  1035.             break;
  1036.         case 'defReport':
  1037.             L_defReport_TEXT='(report: An Access database object that prints information that is formatted and organized according to your specifications. Examples of reports are sales summaries, phone lists, and mailing labels.)';
  1038.             sTemp=L_defReport_TEXT;
  1039.             break;
  1040.         case 'defReportModule':
  1041.             L_defReportModule_TEXT='(report module: A module that includes code for all event procedures triggered by events occurring on a specific report or its controls.)';
  1042.             sTemp=L_defReportModule_TEXT;
  1043.             break;
  1044.         case 'defReportSelector':
  1045.             L_defReportSelector_TEXT='(report selector: The box where the rulers meet in the upper-left corner of a report in Design view. Use the box to perform report-level operations, such as selecting the report.)';
  1046.             sTemp=L_defReportSelector_TEXT;
  1047.             break;
  1048.         case 'defReportWindow':
  1049.             L_defReportWindow_TEXT='(Report window: A window in which you work with reports in Design view, Layout Preview, or Print Preview.)';
  1050.             sTemp=L_defReportWindow_TEXT;
  1051.             break;
  1052.         case 'defRequery':
  1053.             L_defRequery_TEXT='(requery: To rerun a query underlying the active form or datasheet in order to reflect changes to the records, display newly added records, and eliminate deleted records.)';
  1054.             sTemp=L_defRequery_TEXT;
  1055.             break;
  1056.         case 'defReservedWord':
  1057.             L_defReservedWord_TEXT='(keyword: A word that\'s part of the Visual Basic for Applications programming language. Keywords include the names of statements, data types, methods, operators, objects, and predefined functions. Don\'t use keywords for variable or object names.)';
  1058.             sTemp=L_defReservedWord_TEXT;
  1059.             break;
  1060.         case 'defRightOuterJoin':
  1061.             L_defRightOuterJoin_TEXT='(right outer join: An outer join in which all the records from the right side of the RIGHT JOIN operation in the query\'s SQL statement are added to the query\'s results, even if there are no matching values in the joined field from the table on the left.)';
  1062.             sTemp=L_defRightOuterJoin_TEXT;
  1063.             break;
  1064.         case 'defRowSelector':
  1065.             L_defRowSelector_TEXT='(row selector: A small box or bar that, when clicked, selects an entire row in table or macro Design view, or when you sort and group records in report Design view.)';
  1066.             sTemp=L_defRowSelector_TEXT;
  1067.             break;
  1068.         case 'defScriptWindow':
  1069.             L_defScriptWindow_TEXT='(Macro window: The window in which you create and modify macros.)';
  1070.             sTemp=L_defScriptWindow_TEXT;
  1071.             break;
  1072.         case 'defSection':
  1073.             L_defSection_TEXT='(section: A part of a form, report, or data access page such as a header, footer, or detail section.)';
  1074.             sTemp=L_defSection_TEXT;
  1075.             break;
  1076.         case 'defSectionSelector':
  1077.             L_defSectionSelector_TEXT='(section selector: The box on the left side of a section bar when an object is open in Design view. Use the box to perform section-level operations, such as selecting the section.)';
  1078.             sTemp=L_defSectionSelector_TEXT;
  1079.             break;
  1080.         case 'defSecureSystem':
  1081.             L_defSecureSystem_TEXT='(security-enabled workgroup: An Access workgroup in which users log on with a user name and password and in which access to database objects is restricted according to permissions granted to specific user accounts and groups.)';
  1082.             sTemp=L_defSecureSystem_TEXT;
  1083.             break;
  1084.         case 'defSelectionRectangle':
  1085.             L_defSelectionRectangle_TEXT='(selection rectangle: The rectangle formed by the currently selected rows (records) and columns (fields) within Datasheet view.)';
  1086.             sTemp=L_defSelectionRectangle_TEXT;
  1087.             break;
  1088.         case 'defSelectQuery':
  1089.             L_defSelectQuery_TEXT='(select query: A query that asks a question about the data stored in your tables and returns a result set in the form of a datasheet, without changing the data.)';
  1090.             sTemp=L_defSelectQuery_TEXT;
  1091.             break;
  1092.         case 'defSelfJoin':
  1093.             L_defSelfJoin_TEXT='(self-join: A join in which a table is joined to itself. Records from the table are combined with other records from the same table when there are matching values in the joined fields.)';
  1094.             sTemp=L_defSelfJoin_TEXT;
  1095.             break;
  1096.         case 'defSeparator':
  1097.             L_defSeparator_TEXT='(separator: A character that separates units of text or numbers.)';
  1098.             sTemp=L_defSeparator_TEXT;
  1099.             break;
  1100.         case 'defSession':
  1101.             L_defSession_TEXT='(session: A sequence of operations performed by the Microsoft Jet database engine that begins when a user logs on and ends when the user logs off. All operations during a session form one transaction scope and are subject to the user\'s logon permissions.)';
  1102.             sTemp=L_defSession_TEXT;
  1103.             break;
  1104.         case 'defSnapshot':
  1105.             L_defSnapshot_TEXT='(snapshot: A static image of a set of data, such as the records displayed as the result of a query. Snapshot-type <b>Recordset</b> objects can be created from a base table, a query, or another recordset.)';
  1106.             sTemp=L_defSnapshot_TEXT;
  1107.             break;
  1108.         case 'defSQLDatabaseODBC':
  1109.             L_defSQLDatabaseODBC_TEXT='(SQL database: A database that is based on Structured Query Language (SQL).)';
  1110.             sTemp=L_defSQLDatabaseODBC_TEXT;
  1111.             break;
  1112.         case 'defSQLSpecificQuery':
  1113.             L_defSQLSpecificQuery_TEXT='(SQL-specific query: A query that consists of an SQL statement. Subqueries and pass-through, union, and data-definition queries are SQL-specific queries.)';
  1114.             sTemp=L_defSQLSpecificQuery_TEXT;
  1115.             break;
  1116.         case 'defSQLString':
  1117.             L_defSQLString_TEXT='(SQL string/statement: An expression that defines an SQL command, such as <b>SELECT</b>, <b>UPDATE</b>, or <b>DELETE</b>, and includes clauses such as WHERE and ORDER BY. SQL strings/statements are typically used in queries and in aggregate functions.)';
  1118.             sTemp=L_defSQLString_TEXT;
  1119.             break;
  1120.         case 'defSQLView':
  1121.             L_defSQLView_TEXT='(SQL view: A window that displays the SQL statement for the current query or that is used to create an SQL-specific query (union, pass-through, or data definition). When you create a query in Design view, Access constructs the SQL equivalent in SQL view.)';
  1122.             sTemp=L_defSQLView_TEXT;
  1123.             break;
  1124.         case 'defStandardModule':
  1125.             L_defStandardModule_TEXT='(standard module: A module in which you can place <b>Sub</b> and <b>Function</b> procedures that you want to be available to other procedures throughout your database.)';
  1126.             sTemp=L_defStandardModule_TEXT;
  1127.             break;
  1128.         case 'defStoredProcedure':
  1129.             L_defStoredProcedure_TEXT='(stored procedure: A precompiled collection of SQL statements and optional control-of-flow statements that is stored under a name and processed as a unit. The collection is stored in an SQL database and can be run with one call from an application.)';
  1130.             sTemp=L_defStoredProcedure_TEXT;
  1131.             break;
  1132.         case 'defStringDelimiter':
  1133.             L_defStringDelimiter_TEXT='(string delimiter: Text characters that set apart a string embedded within a string. Single quotation marks (\') and double quotation marks (\") are string delimiters.)';
  1134.             sTemp=L_defStringDelimiter_TEXT;
  1135.             break;
  1136.         case 'defSubform':
  1137.             L_defSubform_TEXT='(subform: A form contained within another form or a report.)';
  1138.             sTemp=L_defSubform_TEXT;
  1139.             break;
  1140.         case 'defSubformSubreport':
  1141.             L_defSubformSubreport_TEXT='(subform/subreport control: A control that displays a subform in a form or a subform or a subreport in a report.)';
  1142.             sTemp=L_defSubformSubreport_TEXT;
  1143.             break;
  1144.         case 'defSubProcedure':
  1145.             L_defSubProcedure_TEXT='(<b>Sub </b> procedure: A procedure that carries out an operation. Unlike a <b>Function</b> procedure, a <b>Sub</b> procedure doesn\'t return a value. You begin a <b>Sub</b> procedure with a <b>Sub</b> statement and end it with an <b>End Sub</b> statement.)';
  1146.             sTemp=L_defSubProcedure_TEXT;
  1147.             break;
  1148.         case 'defSubquery':
  1149.             L_defSubquery_TEXT='(subquery: An <b>SQL SELECT</b> statement that is inside another select or action query.)';
  1150.             sTemp=L_defSubquery_TEXT;
  1151.             break;
  1152.         case 'defSubreport':
  1153.             L_defSubreport_TEXT='(subreport: A report that is contained within another report.)';
  1154.             sTemp=L_defSubreport_TEXT;
  1155.             break;
  1156.         case 'defSystemObjects':
  1157.             L_defSystemObjects_TEXT='(system object: Database objects that are defined by the system, such as the table MSysIndexes, or by the user. You can create a system object by naming the object with USys as the first four characters in the object name.)';
  1158.             sTemp=L_defSystemObjects_TEXT;
  1159.             break;
  1160.         case 'defTabControl':
  1161.             L_defTabControl_TEXT='(tab control: A control that you can use to construct a single form or dialog box that contains several pages, each with a tab, and each containing similar controls, such as text boxes or option buttons. When a user clicks a tab, that page becomes active.)';
  1162.             sTemp=L_defTabControl_TEXT;
  1163.             break;
  1164.         case 'defTable':
  1165.             L_defTable_TEXT='(table: A database object that stores data in records (rows) and fields (columns). The data is usually about a particular category of things, such as employees or orders.)';
  1166.             sTemp=L_defTable_TEXT;
  1167.             break;
  1168.         case 'defTableProperties':
  1169.             L_defTableProperties_TEXT='(table properties: In an Access database, attributes of a table that affect the appearance or behavior of the table as a whole. Table properties are set in table Design view, as are field properties.)';
  1170.             sTemp=L_defTableProperties_TEXT;
  1171.             break;
  1172.         case 'defTableWindow':
  1173.             L_defTableWindow_TEXT='(Table window: In an Access database, a window in which you work with tables in Design view or Datasheet view.)';
  1174.             sTemp=L_defTableWindow_TEXT;
  1175.             break;
  1176.         case 'defTextBox':
  1177.             L_defTextBox_TEXT='(text box: A control, also called an edit field, that is used on a form, report, or data access page to display text or accept data entry. It can have a label attached to it.)';
  1178.             sTemp=L_defTextBox_TEXT;
  1179.             break;
  1180.         case 'defTextDataType':
  1181.             L_defTextDataType_TEXT='(Text data type: In a Microsoft Access database, this is a field data type. Text fields can contain up to 255 characters or the number of characters specified by the <b>FieldSize</b> property, whichever is less.)';
  1182.             sTemp=L_defTextDataType_TEXT;
  1183.             break;
  1184.         case 'defToggleButton':
  1185.             L_defToggleButton_TEXT='(toggle button: A control that is used to provide on/off options on a form or report. It can display either text or a picture and can be stand-alone or part of an option group.)';
  1186.             sTemp=L_defToggleButton_TEXT;
  1187.             break;
  1188.         case 'defToolbox':
  1189.             L_defToolbox_TEXT='(toolbox: A set of tools that is available in Design view to add controls to a form, report, or data access page. The toolset available in page Design view is different from the toolset available in form and report Design view.)';
  1190.             sTemp=L_defToolbox_TEXT;
  1191.             break;
  1192.         case 'defToolProperties':
  1193.             L_defToolProperties_TEXT='(default control style: The default property setting of a control type. You customize a control type before you create two or more similar controls to avoid customizing each control individually.)';
  1194.             sTemp=L_defToolProperties_TEXT;
  1195.             break;
  1196.         case 'defToolTips':
  1197.             L_defToolTips_TEXT='(ToolTips: Brief descriptions of the names of buttons and boxes on toolbars and in the toolbox. A ToolTip is displayed when the mouse pointer rests on the button or combo box.)';
  1198.             sTemp=L_defToolTips_TEXT;
  1199.             break;
  1200.         case 'defTotalsQuery':
  1201.             L_defTotalsQuery_TEXT='(totals query: A query that displays a summary calculation, such as an average or sum, for values in various fields from a table or tables. A totals query is not a separate kind of query; rather, it extends the flexibility of select queries.)';
  1202.             sTemp=L_defTotalsQuery_TEXT;
  1203.             break;
  1204.         case 'defTransaction':
  1205.             L_defTransaction_TEXT='(transaction: A series of changes made to a database\'s data and schema.)';
  1206.             sTemp=L_defTransaction_TEXT;
  1207.             break;
  1208.         case 'defUnboundField':
  1209.             L_defUnboundField_TEXT='(unbound control: A control that is not connected to a field in an underlying table, query, or SQL statement. An unbound control is often used to display informational text or decorative pictures.)';
  1210.             sTemp=L_defUnboundField_TEXT;
  1211.             break;
  1212.         case 'defUnboundFormReport':
  1213.             L_defUnboundFormReport_TEXT='(unbound form or report: A form or report that isn\'t connected to a record source such as a table, query, or SQL statement. (The form\'s or report\'s <b>RecordSource</b> property is blank.))';
  1214.             sTemp=L_defUnboundFormReport_TEXT;
  1215.             break;
  1216.         case 'defUnboundObjectFrame':
  1217.             L_defUnboundObjectFrame_TEXT='(unbound object frame: A control that you place on a form or report to contain an unbound object. An unbound object is an object, such as a picture, whose value isn\'t derived from data stored in a table.)';
  1218.             sTemp=L_defUnboundObjectFrame_TEXT;
  1219.             break;
  1220.         case 'defUnionQuery':
  1221.             L_defUnionQuery_TEXT='(union query: A query that uses the <b>UNION</b> operator to combine the results of two or more select queries.)';
  1222.             sTemp=L_defUnionQuery_TEXT;
  1223.             break;
  1224.         case 'defUniqueIndex':
  1225.             L_defUniqueIndex_TEXT='(unique index: An index defined by setting a field\'s <b>Indexed</b> property to <b>Yes (No Duplicates)</b>. A unique index will not allow duplicate entries in the indexed field. Setting a field as the primary key automatically defines the field as unique.)';
  1226.             sTemp=L_defUniqueIndex_TEXT;
  1227.             break;
  1228.         case 'defUpdate':
  1229.             L_defUpdate_TEXT='(update: To accept changes to data in a record. The changes are saved in the database when you move to another record on a form, datasheet, or data access page, or when you explicitly save the record.)';
  1230.             sTemp=L_defUpdate_TEXT;
  1231.             break;
  1232.         case 'defUpdateQuery':
  1233.             L_defUpdateQuery_TEXT='(update query: An action query (SQL statement) that changes a set of records according to criteria (search conditions) that you specify.)';
  1234.             sTemp=L_defUpdateQuery_TEXT;
  1235.             break;
  1236.         case 'defUserAccount':
  1237.             L_defUserAccount_TEXT='(user account: An account identified by a user name and personal ID (PID) that is created to manage the user\'s permissions to access database objects in an Access workgroup.)';
  1238.             sTemp=L_defUserAccount_TEXT;
  1239.             break;
  1240.         case 'defUserDefinedCollection':
  1241.             L_defUserDefinedCollection_TEXT='(user-defined collection: A collection that you create by adding objects to a <b>Collection</b> object. Items in a collection defined by the <b>Collection</b> object are indexed, beginning with 1.)';
  1242.             sTemp=L_defUserDefinedCollection_TEXT;
  1243.             break;
  1244.         case 'defUserDefinedFunction':
  1245.             L_defUserDefinedFunction_TEXT='(user-defined function: A query that takes input parameters and returns a result like a stored procedure. Types: scalar (multistatement; returns one value), inline (one statement; an updateable table value), and table (multistatement; table value).)';
  1246.             sTemp=L_defUserDefinedFunction_TEXT;
  1247.             break;
  1248.         case 'defUserDefinedObject':
  1249.             L_defUserDefinedObject_TEXT='(user-defined object: A custom object that is defined in a form or report class module. In a class module, you can create methods and properties for a new object, create a new instance of this object, and manipulate it with these properties and methods.)';
  1250.             sTemp=L_defUserDefinedObject_TEXT;
  1251.             break;
  1252.         case 'defUserLevelSecurity':
  1253.             L_defUserLevelSecurity_TEXT='(user-level security: When using user-level security in an Access database, a database administrator or an object\'s owner can grant individual users or groups of users specific permissions to tables, queries, forms, reports, and macros.)';
  1254.             sTemp=L_defUserLevelSecurity_TEXT;
  1255.             break;
  1256.         case 'defUsersGroup':
  1257.             L_defUsersGroup_TEXT='(Users group: The group account that contains all user accounts. Access automatically adds user accounts to the Users group when you create them.)';
  1258.             sTemp=L_defUsersGroup_TEXT;
  1259.             break;
  1260.         case 'defValidation':
  1261.             L_defValidation_TEXT='(validation: The process of checking whether entered data meets certain conditions or limitations.)';
  1262.             sTemp=L_defValidation_TEXT;
  1263.             break;
  1264.         case 'defValidationRule':
  1265.             L_defValidationRule_TEXT='(validation rule: A property that defines valid input values for a field or record in a table, or a control on a form. Access displays the message specified in the <b>ValidationText</b> property when the rule is violated.)';
  1266.             sTemp=L_defValidationRule_TEXT;
  1267.             break;
  1268.         case 'defVBIdentifier':
  1269.             L_defVBIdentifier_TEXT='(identifier (Visual Basic): A data member in a Visual Basic code module. An identifier can be a <b>Sub</b>, <b>Function</b>, or <b>Property</b> procedure, a variable, a constant, a <b>DECLARE</b> statement, or a user-defined data type.)';
  1270.             sTemp=L_defVBIdentifier_TEXT;
  1271.             break;
  1272.         case 'defWhereClause':
  1273.             L_defWhereClause_TEXT='(WHERE clause: The part of an SQL statement that specifies which records to retrieve.)';
  1274.             sTemp=L_defWhereClause_TEXT;
  1275.             break;
  1276.         case 'defWorkGroup':
  1277.             L_defWorkGroup_TEXT='(workgroup: A group of users in a multiuser environment who share data and the same workgroup information file.)';
  1278.             sTemp=L_defWorkGroup_TEXT;
  1279.             break;
  1280.         case 'defWorkgroupID':
  1281.             L_defWorkgroupID_TEXT='(workgroup ID: A case-sensitive alphanumeric string that is 4 to 20 characters long and that you enter when creating a new workgroup information file by using the Workgroup Administrator. This uniquely identifies the Admin group for this workgroup file.)';
  1282.             sTemp=L_defWorkgroupID_TEXT;
  1283.             break;
  1284.         case 'defWorkgroupInformationFile':
  1285.             L_defWorkgroupInformationFile_TEXT='(workgroup information file: A file that Access reads at startup that contains information about the users in a workgroup. This information includes users\' account names, their passwords, and the groups of which they are members.)';
  1286.             sTemp=L_defWorkgroupInformationFile_TEXT;
  1287.             break;
  1288.         case 'defYesNoDataType':
  1289.             L_defYesNoDataType_TEXT='(Yes/No data type: A field data type that you use for fields that will contain only one of two values, such as Yes or No and True or False. Null values are not allowed.)';
  1290.             sTemp=L_defYesNoDataType_TEXT;
  1291.             break;
  1292.         case 'defZeroLengthString':
  1293.             L_defZeroLengthString_TEXT='(zero-length string: A string that contains no characters. You can use a zero-length string to indicate that you know no value exists for a field. You enter a zero-length string by typing two double quotation marks with no space between them (\" \").)';
  1294.             sTemp=L_defZeroLengthString_TEXT;
  1295.             break;
  1296.         case 'IDH_acdefAbsolutePositioning':
  1297.             L_IDH_acdefAbsolutePositioning_TEXT='(absolute or fixed positioning: Places the element relative to either the element\'s parent or, if there isn\'t one, the body. Values for the element\'s <b>Left</b> and <b>Top</b> properties are relative to the upper-left corner of the element\'s parent.)';
  1298.             sTemp=L_IDH_acdefAbsolutePositioning_TEXT;
  1299.             break;
  1300.         case 'IDH_acdefAccessProject':
  1301.             L_IDH_acdefAccessProject_TEXT='(Microsoft Access project: An Access file that connects to a Microsoft SQL Server database and is used to create client/server applications. A project file doesn\'t contain any data or data-definition-based objects such as tables and views.)';
  1302.             sTemp=L_IDH_acdefAccessProject_TEXT;
  1303.             break;
  1304.         case 'IDH_acdefAnonymousReplica':
  1305.             L_IDH_acdefAnonymousReplica_TEXT='(anonymous replica: In an Access database, a special type of replica in which you don\'t keep track of individual users. The anonymous replica is particularly useful in an Internet situation where you expect many users to download replicas.)';
  1306.             sTemp=L_IDH_acdefAnonymousReplica_TEXT;
  1307.             break;
  1308.         case 'IDH_acdefBinaryDataType':
  1309.             L_IDH_acdefBinaryDataType_TEXT='(binary data type: In an Access project, a fixed-length data type with a maximum of 8,000 bytes of binary data.)';
  1310.             sTemp=L_IDH_acdefBinaryDataType_TEXT;
  1311.             break;
  1312.         case 'IDH_acdefBitDataType':
  1313.             L_IDH_acdefBitDataType_TEXT='(bit data type: In an Access project, a data type that stores either a 1 or 0 value. Integer values other than 1 or 0 are accepted, but they are always interpreted as 1.)';
  1314.             sTemp=L_IDH_acdefBitDataType_TEXT;
  1315.             break;
  1316.         case 'IDH_acdefBody':
  1317.             L_IDH_acdefBody_TEXT='(body: The basic design surface of a data access page. It displays informational text, controls bound to data, and sections.)';
  1318.             sTemp=L_IDH_acdefBody_TEXT;
  1319.             break;
  1320.         case 'IDH_acdefBoundHTMLControl':
  1321.             L_IDH_acdefBoundHTMLControl_TEXT='(bound span control: A control that is used on a data access page to bind HTML code to a Text or Memo field in an Access database or to a text, ntext, or varchar column in an Access project. You cannot edit the contents of a bound span control.)';
  1322.             sTemp=L_IDH_acdefBoundHTMLControl_TEXT;
  1323.             break;
  1324.         case 'IDH_acdefBoundHyperlinkControl':
  1325.             L_IDH_acdefBoundHyperlinkControl_TEXT='(bound hyperlink control: A control that is used on a data access page to bind a link, an intranet address, or an Internet address to an underlying Text field. You can click the hyperlink to go to the target location.)';
  1326.             sTemp=L_IDH_acdefBoundHyperlinkControl_TEXT;
  1327.             break;
  1328.         case 'IDH_acdefBoundPicture':
  1329.             L_IDH_acdefBoundPicture_TEXT='(bound picture: A control that is used on a form, report, or data access page to bind an image to an OLE Object field in an Access database or an image column in an Access project.)';
  1330.             sTemp=L_IDH_acdefBoundPicture_TEXT;
  1331.             break;
  1332.         case 'IDH_acdefCaptionSection':
  1333.             L_IDH_acdefCaptionSection_TEXT='(caption section: The section on a grouped data access page that displays captions for columns of data. It appears immediately before the group header. You cannot add a bound control to a caption section.)';
  1334.             sTemp=L_IDH_acdefCaptionSection_TEXT;
  1335.             break;
  1336.         case 'IDH_acdefCharDataType':
  1337.             L_IDH_acdefCharDataType_TEXT='(char data type: In an Access project, a fixed-length data type with a maximum of 8,000 ANSI characters.)';
  1338.             sTemp=L_IDH_acdefCharDataType_TEXT;
  1339.             break;
  1340.         case 'IDH_acdefConditionalFormatting':
  1341.             L_IDH_acdefConditionalFormatting_TEXT='(conditional formatting: Formatting the contents of a control in a form or report based on one or more conditions. A condition can reference another control, the control with focus, or a user-defined Visual Basic for Applications function.)';
  1342.             sTemp=L_IDH_acdefConditionalFormatting_TEXT;
  1343.             break;
  1344.         case 'IDH_acdefConflict':
  1345.             L_IDH_acdefConflict_TEXT='(conflict: Can occur if data has changed in the same record of two replica set members. When a conflict occurs, a winning change is selected and applied in all replicas, and the losing change is recorded as a conflict at all replicas.)';
  1346.             sTemp=L_IDH_acdefConflict_TEXT;
  1347.             break;
  1348.         case 'IDH_acdefCursorDataType':
  1349.             L_IDH_acdefCursorDataType_TEXT='(cursor data type: In an Access project, a data type you can use only for creating a cursor variable. This data type cannot be used for columns in a table. A cursor is a mechanism used to work with one row at a time in the result set of a SELECT statement.)';
  1350.             sTemp=L_IDH_acdefCursorDataType_TEXT;
  1351.             break;
  1352.         case 'IDH_acdefDataAccessPageProperties':
  1353.             L_IDH_acdefDataAccessPageProperties_TEXT='(data access page properties: Attributes of a data access page that identify the database to which the page is connected and define the page\'s appearance and behavior.)';
  1354.             sTemp=L_IDH_acdefDataAccessPageProperties_TEXT;
  1355.             break;
  1356.         case 'IDH_acdefDataAccessPageWindow':
  1357.             L_IDH_acdefDataAccessPageWindow_TEXT='(Data Access Page window: The window that displays data access pages in Design view and Page view.)';
  1358.             sTemp=L_IDH_acdefDataAccessPageWindow_TEXT;
  1359.             break;
  1360.         case 'IDH_acdefDataDefinition':
  1361.             L_IDH_acdefDataDefinition_TEXT='(data definition: The fields in underlying tables and queries, and the expressions, that make up the record source for a data access page.)';
  1362.             sTemp=L_IDH_acdefDataDefinition_TEXT;
  1363.             break;
  1364.         case 'IDH_acdefDataFiles':
  1365.             L_IDH_acdefDataFiles_TEXT='(Microsoft Access file: An Access database or Access project file. An Access database stores database objects and data in an .mdb file. A project file doesn\'t contain data and is used to connect to a Microsoft SQL Server database.)';
  1366.             sTemp=L_IDH_acdefDataFiles_TEXT;
  1367.             break;
  1368.         case 'IDH_acdefDataSourceControl':
  1369.             L_IDH_acdefDataSourceControl_TEXT='(data source control: The engine behind data access pages and Microsoft Office Web Components that manages the connection to the underlying data source. The data source control has no visual representation.)';
  1370.             sTemp=L_IDH_acdefDataSourceControl_TEXT;
  1371.             break;
  1372.         case 'IDH_acdefDatetimeDataType':
  1373.             L_IDH_acdefDatetimeDataType_TEXT='(datetime data type: In an Access project, a date and time data type that ranges from January 1, 1753, to December 31, 9999, to an accuracy of three-hundredths of a second, or 3.33 milliseconds.)';
  1374.             sTemp=L_IDH_acdefDatetimeDataType_TEXT;
  1375.             break;
  1376.         case 'IDH_acdefDecimalDataType':
  1377.             L_IDH_acdefDecimalDataType_TEXT='(decimal data type (Access project): An exact numeric data type that holds values from -10^38 - 1 through 10^38 - 1. You can specify the scale (maximum total number of digits) and precision (maximum number of digits to the right of the decimal point).)';
  1378.             sTemp=L_IDH_acdefDecimalDataType_TEXT;
  1379.             break;
  1380.         case 'IDH_acdefDecimalDataTypeMicrosoftAccessDatabase':
  1381.             L_IDH_acdefDecimalDataTypeMicrosoftAccessDatabase_TEXT='(decimal data type (Access database): An exact numeric data type that holds values from -10^28 - 1 through 10^28 - 1. You can specify the scale (maximum number of digits) and precision (maximum total number of digits to the right of the decimal point).)';
  1382.             sTemp=L_IDH_acdefDecimalDataTypeMicrosoftAccessDatabase_TEXT;
  1383.             break;
  1384.         case 'IDH_acdefDesignMaster':
  1385.             L_IDH_acdefDesignMaster_TEXT='(Design Master: The only member of the replica set in which you can make changes to the database structure that can be propagated to other replicas.)';
  1386.             sTemp=L_IDH_acdefDesignMaster_TEXT;
  1387.             break;
  1388.         case 'IDH_acdefDirectSynchronization':
  1389.             L_IDH_acdefDirectSynchronization_TEXT='(direct synchronization: A method used to synchronize data between replicas that are connected directly to the local area network and are available through shared network folders.)';
  1390.             sTemp=L_IDH_acdefDirectSynchronization_TEXT;
  1391.             break;
  1392.         case 'IDH_acdefDocumentProperties':
  1393.             L_IDH_acdefDocumentProperties_TEXT='(document properties: Properties, such as title, subject, and author, that are stored with each data access page.)';
  1394.             sTemp=L_IDH_acdefDocumentProperties_TEXT;
  1395.             break;
  1396.         case 'IDH_acdefDropdownListBox':
  1397.             L_IDH_acdefDropdownListBox_TEXT='(drop-down list box: A control on a data access page that, when clicked, displays a list from which you can select a value. You cannot type a value in a drop-down list box.)';
  1398.             sTemp=L_IDH_acdefDropdownListBox_TEXT;
  1399.             break;
  1400.         case 'IDH_acdefExpandControl':
  1401.             L_IDH_acdefExpandControl_TEXT='(expand control: A control on a data access page that, when clicked, expands or collapses a grouped record to display or hide its detail records.)';
  1402.             sTemp=L_IDH_acdefExpandControl_TEXT;
  1403.             break;
  1404.         case 'IDH_acdefExpandIndicator':
  1405.             L_IDH_acdefExpandIndicator_TEXT='(expand indicator: A button that is used to expand or collapse groups of records; it displays the plus (+) or minus (-) sign.)';
  1406.             sTemp=L_IDH_acdefExpandIndicator_TEXT;
  1407.             break;
  1408.         case 'IDH_acdefExport':
  1409.             L_IDH_acdefExport_TEXT='(export: To output data and database objects to another database, spreadsheet, or file format so another database or program can use the data or database objects. You can export data to a variety of supported databases, programs, and file formats.)';
  1410.             sTemp=L_IDH_acdefExport_TEXT;
  1411.             break;
  1412.         case 'IDH_acdefFill':
  1413.             L_IDH_acdefFill_TEXT='(Fill: A report magnification that fills the Report Snapshot window by fitting either the width or the height of a page, depending on whether the report is in portrait or landscape orientation.)';
  1414.             sTemp=L_IDH_acdefFill_TEXT;
  1415.             break;
  1416.         case 'IDH_acdefFilterExcludingSelection':
  1417.             L_IDH_acdefFilterExcludingSelection_TEXT='(Filter Excluding Selection: A technique in which you filter records in a form, datasheet, or data access page to retrieve only those records that don\'t contain the selected value.)';
  1418.             sTemp=L_IDH_acdefFilterExcludingSelection_TEXT;
  1419.             break;
  1420.         case 'IDH_acdefFloatDataType':
  1421.             L_IDH_acdefFloatDataType_TEXT='(float data type: In an Access project, an approximate numeric data type with 15-digit precision. It can hold positive values from approximately 2.23E - 308 through 1.79E + 308, negative values from approximately -2.23E - 308 through -1.79E + 308, or zero.)';
  1422.             sTemp=L_IDH_acdefFloatDataType_TEXT;
  1423.             break;
  1424.         case 'IDH_acdefGeneralSortOrder':
  1425.             L_IDH_acdefGeneralSortOrder_TEXT='(General sort order: The default sort order determines how characters are sorted in the entire database, such as in tables, queries, and reports. Define General sort order if you plan to use a database with multiple language editions of Access.)';
  1426.             sTemp=L_IDH_acdefGeneralSortOrder_TEXT;
  1427.             break;
  1428.         case 'IDH_acdefGlobalReplica':
  1429.             L_IDH_acdefGlobalReplica_TEXT='(global replica: A replica in which changes are fully tracked and can be exchanged with any global replica in the set. A global replica can also exchange changes with any local or anonymous replicas for which it becomes the hub.)';
  1430.             sTemp=L_IDH_acdefGlobalReplica_TEXT;
  1431.             break;
  1432.         case 'IDH_acdefGridDatasheetView':
  1433.             L_IDH_acdefGridDatasheetView_TEXT='(grid (Datasheet view): Vertical and horizontal lines that visually divide rows and columns of data into cells in a table, query, form, view, or stored procedure. You can show and hide these grid lines.)';
  1434.             sTemp=L_IDH_acdefGridDatasheetView_TEXT;
  1435.             break;
  1436.         case 'IDH_acdefGroup':
  1437.             L_IDH_acdefGroup_TEXT='(grouped controls: Two or more controls that can be treated as one unit while designing a form or report. You can select the group instead of selecting each individual control as you\'re arranging controls or assigning properties.)';
  1438.             sTemp=L_IDH_acdefGroup_TEXT;
  1439.             break;
  1440.         case 'IDH_acdefGroupedDataAccessPage':
  1441.             L_IDH_acdefGroupedDataAccessPage_TEXT='(grouped data access page: A data access page that has two or more group levels.)';
  1442.             sTemp=L_IDH_acdefGroupedDataAccessPage_TEXT;
  1443.             break;
  1444.         case 'IDH_acdefGroupFilterControl':
  1445.             L_IDH_acdefGroupFilterControl_TEXT='(group filter control: A drop-down list box control on a data access page that retrieves records from an underlying recordset based on the value that you select from the list. On a grouped page, the control retrieves a specific group of records.)';
  1446.             sTemp=L_IDH_acdefGroupFilterControl_TEXT;
  1447.             break;
  1448.         case 'IDH_acdefHotspot':
  1449.             L_IDH_acdefHotspot_TEXT='(hyperlink image control: A control that is used on a data access page to display an unbound image that represents a hyperlink to a file or Web page. In Browse mode, you can click the image to go to the target location.)';
  1450.             sTemp=L_IDH_acdefHotspot_TEXT;
  1451.             break;
  1452.         case 'IDH_acdefHub':
  1453.             L_IDH_acdefHub_TEXT='(hub: A global replica to which all replicas in the replica set synchronize their changes. The hub serves as the parent replica.)';
  1454.             sTemp=L_IDH_acdefHub_TEXT;
  1455.             break;
  1456.         case 'IDH_acdefHyperlinkField':
  1457.             L_IDH_acdefHyperlinkField_TEXT='(hyperlink field: A field that stores hyperlink addresses. In an Access database (.mdb), it\'s a field with a Hyperlink data type. In an Access project (.adp), it\'s a field that has the <b>IsHyperlink</b> property set to <b>True</b>.)';
  1458.             sTemp=L_IDH_acdefHyperlinkField_TEXT;
  1459.             break;
  1460.         case 'IDH_acdefImageOLEObjectDataType':
  1461.             L_IDH_acdefImageOLEObjectDataType_TEXT='(image data type: In an Access project, a variable-length data type that can hold a maximum of 2^31 - 1 (2,147,483,647) bytes of binary data. It is used to store Binary Large Objects (BLOBs), such as pictures, documents, sounds, and compiled code.)';
  1462.             sTemp=L_IDH_acdefImageOLEObjectDataType_TEXT;
  1463.             break;
  1464.         case 'IDH_acdefIndirectSynchronization':
  1465.             L_IDH_acdefIndirectSynchronization_TEXT='(indirect synchronization: A synchronization method that is used in a disconnected environment, such as when you travel with a portable computer. You must use the Replication Manager to configure indirect synchronization.)';
  1466.             sTemp=L_IDH_acdefIndirectSynchronization_TEXT;
  1467.             break;
  1468.         case 'IDH_acdefIntDataType':
  1469.             L_IDH_acdefIntDataType_TEXT='(int data type: In an Access project, a data type of 4 bytes (32 bits) that stores whole numbers in the range of -2^31 (-2,147,483,648) through 2^31 - 1 (2,147,483,647).)';
  1470.             sTemp=L_IDH_acdefIntDataType_TEXT;
  1471.             break;
  1472.         case 'IDH_acdefInternetSynchronization':
  1473.             L_IDH_acdefInternetSynchronization_TEXT='(Internet synchronization: Used to synchronize replicas in a disconnected environment in which an Internet server is configured. You must use the Replication Manager to configure Internet synchronization.)';
  1474.             sTemp=L_IDH_acdefInternetSynchronization_TEXT;
  1475.             break;
  1476.         case 'IDH_acdefJROJetReplicationObjects':
  1477.             L_IDH_acdefJROJetReplicationObjects_TEXT='(JRO: A set of automation interfaces that you can use to perform actions specific to Microsoft Jet databases. Using JRO, you can compact databases, refresh data from the cache, and create and maintain replicated databases.)';
  1478.             sTemp=L_IDH_acdefJROJetReplicationObjects_TEXT;
  1479.             break;
  1480.         case 'IDH_acdefLocalObject':
  1481.             L_IDH_acdefLocalObject_TEXT='(local object: A table, query, form, report, macro, or module that remains in the replica or Design Master where it was created. Neither the object nor changes to the object are copied to other members in the replica set.)';
  1482.             sTemp=L_IDH_acdefLocalObject_TEXT;
  1483.             break;
  1484.         case 'IDH_acdefLocalReplica':
  1485.             L_IDH_acdefLocalReplica_TEXT='(local replica: A replica that exchanges data with its hub or a global replica but not with other replicas in the replica set.)';
  1486.             sTemp=L_IDH_acdefLocalReplica_TEXT;
  1487.             break;
  1488.         case 'IDH_acdefMarquee':
  1489.             L_IDH_acdefMarquee_TEXT='(marquee: Moving text that is used on a data access page to draw the user\'s attention to a specific page element, such as a headline or an important announcement. To place a marquee on a page, create a scrolling text control.)';
  1490.             sTemp=L_IDH_acdefMarquee_TEXT;
  1491.             break;
  1492.         case 'IDH_acdefMaximumRecordLimit':
  1493.             L_IDH_acdefMaximumRecordLimit_TEXT='(maximum record limit: To improve performance, you can specify the maximum number of records that will be retrieved from a Microsoft SQL Server database for a form or datasheet in an Access project.)';
  1494.             sTemp=L_IDH_acdefMaximumRecordLimit_TEXT;
  1495.             break;
  1496.         case 'IDH_acdefMicrosoftDataEngineMSDE':
  1497.             L_IDH_acdefMicrosoftDataEngineMSDE_TEXT='(MSDE 2000: A client/server data engine that provides local data storage on a smaller computer system, such as a single-user computer or small workgroup server, and that is compatible with Microsoft SQL Server 6.5, 7.0, and 2000.)';
  1498.             sTemp=L_IDH_acdefMicrosoftDataEngineMSDE_TEXT;
  1499.             break;
  1500.         case 'IDH_acdefMoneyDataType':
  1501.             L_IDH_acdefMoneyDataType_TEXT='(money data type: In an Access project, a data type that stores monetary values in the range -922,337,203,685,477.5707 through 922,337,203,685,477.5807, with accuracy to a ten-thousandth of a monetary unit.)';
  1502.             sTemp=L_IDH_acdefMoneyDataType_TEXT;
  1503.             break;
  1504.         case 'IDH_acdefNameAutoCorrect':
  1505.             L_IDH_acdefNameAutoCorrect_TEXT='(Name AutoCorrect: A feature that automatically corrects common side effects that occur when you rename forms, reports, tables, queries, fields, or controls on forms and reports. However, Name AutoCorrect cannot repair all references to renamed objects.)';
  1506.             sTemp=L_IDH_acdefNameAutoCorrect_TEXT;
  1507.             break;
  1508.         case 'IDH_acdefNcharDataType':
  1509.             L_IDH_acdefNcharDataType_TEXT='(nchar data type: In an Access project, a fixed-length data type with a maximum of 4,000 Unicode characters. Unicode characters use 2 bytes per character and support all international characters.)';
  1510.             sTemp=L_IDH_acdefNcharDataType_TEXT;
  1511.             break;
  1512.         case 'IDH_acdefNtextDataType':
  1513.             L_IDH_acdefNtextDataType_TEXT='(ntext data type: In an Access project, a variable-length data type that can hold a maximum of 2^30 - 1 (1,073,741,823) characters. Columns with the ntext data type store a 16-byte pointer in the data row, and the data is stored separately.)';
  1514.             sTemp=L_IDH_acdefNtextDataType_TEXT;
  1515.             break;
  1516.         case 'IDH_acdefNumericDataType':
  1517.             L_IDH_acdefNumericDataType_TEXT='(numeric data type: In an Access project, an exact numeric data type that holds values from -10^38 - 1 through 10^38 - 1. You can specify the scale (maximum total number of digits) and precision (maximum number of digits to the right of the decimal point).)';
  1518.             sTemp=L_IDH_acdefNumericDataType_TEXT;
  1519.             break;
  1520.         case 'IDH_acdefNvarchaDataType':
  1521.             L_IDH_acdefNvarchaDataType_TEXT='(nvarchar(n) data type: In an Access project, a variable-length data type with a maximum of 4,000 Unicode characters. Unicode characters use 2 bytes per character and support all international characters.)';
  1522.             sTemp=L_IDH_acdefNvarchaDataType_TEXT;
  1523.             break;
  1524.         case 'IDH_acdefOLEDB':
  1525.             L_IDH_acdefOLEDB_TEXT='(OLE DB: A component database architecture that provides efficient network and Internet access to many types of data sources, including relational data, mail files, flat files, and spreadsheets.)';
  1526.             sTemp=L_IDH_acdefOLEDB_TEXT;
  1527.             break;
  1528.         case 'IDH_acdefOLEDBProvider':
  1529.             L_IDH_acdefOLEDBProvider_TEXT='(OLE DB provider: A program in the OLE DB architecture that enables native access to data, instead of accessing data by using ODBC or IISAM drivers, which are external ways to access the data.)';
  1530.             sTemp=L_IDH_acdefOLEDBProvider_TEXT;
  1531.             break;
  1532.         case 'IDH_acdefPageView':
  1533.             L_IDH_acdefPageView_TEXT='(Page view: An Access window in which you can browse the contents of a data access page. Pages have the same functionality in Page view as in Internet Explorer 5.0 or later.)';
  1534.             sTemp=L_IDH_acdefPageView_TEXT;
  1535.             break;
  1536.         case 'IDH_acdefPartialReplica':
  1537.             L_IDH_acdefPartialReplica_TEXT='(partial replica: A database that contains only a subset of the records in a full replica. With a partial replica, you can set filters and identify relationships that define which subset of the records in the full replica should be present in the database.)';
  1538.             sTemp=L_IDH_acdefPartialReplica_TEXT;
  1539.             break;
  1540.         case 'IDH_acdefPivotTableList':
  1541.             L_IDH_acdefPivotTableList_TEXT='(PivotTable list: A Microsoft Office Web Component that is used to analyze data interactively on a Web page. Data displayed in a row and column format can be moved, filtered, sorted, and calculated in ways that are meaningful for your audience.)';
  1542.             sTemp=L_IDH_acdefPivotTableList_TEXT;
  1543.             break;
  1544.         case 'IDH_acdefPublication':
  1545.             L_IDH_acdefPublication_TEXT='(publication: In an Access project, a publication can contain one or more published tables or stored procedure articles from one user database. Each user database can have one or more publications. An article is a grouping of data replicated as a unit.)';
  1546.             sTemp=L_IDH_acdefPublication_TEXT;
  1547.             break;
  1548.         case 'IDH_acdefRealDataType':
  1549.             L_IDH_acdefRealDataType_TEXT='(real data type: In an Access project, an approximate numeric data type with seven-digit precision. It can hold positive values from approximately 1.18E - 38 through 3.40E + 38, negative values from approximately -1.18E - 38 through -3.40E + 38, or zero.)';
  1550.             sTemp=L_IDH_acdefRealDataType_TEXT;
  1551.             break;
  1552.         case 'IDH_acdefRecordNavigationControl':
  1553.             L_IDH_acdefRecordNavigationControl_TEXT='(record navigation control: A control used on a data access page to display a record navigation toolbar. In a grouped page, you can add a navigation toolbar to each group level. You can customize the record navigation control by changing its properties.)';
  1554.             sTemp=L_IDH_acdefRecordNavigationControl_TEXT;
  1555.             break;
  1556.         case 'IDH_acdefRecordNavigationSection':
  1557.             L_IDH_acdefRecordNavigationSection_TEXT='(record navigation section: A section in a data access page that displays the record navigation control for a specific group level. It appears after the corresponding group header section. You can\'t place bound controls in a record navigation section.)';
  1558.             sTemp=L_IDH_acdefRecordNavigationSection_TEXT;
  1559.             break;
  1560.         case 'IDH_acdefRelativePositioning':
  1561.             L_IDH_acdefRelativePositioning_TEXT='(relative or inline positioning: Places the element in the natural HTML flow of the document but offsets the position of the element based on the preceding content.)';
  1562.             sTemp=L_IDH_acdefRelativePositioning_TEXT;
  1563.             break;
  1564.         case 'IDH_acdefReplicaSet':
  1565.             L_IDH_acdefReplicaSet_TEXT='(replica set: The Design Master and all replicas that share the same database design and unique replica set identifier.)';
  1566.             sTemp=L_IDH_acdefReplicaSet_TEXT;
  1567.             break;
  1568.         case 'IDH_acdefReportSnapshot':
  1569.             L_IDH_acdefReportSnapshot_TEXT='(report snapshot: A file (.snp extension) that contains a high-fidelity copy of each page of an Access report. It preserves the two-dimensional layout, graphics, and other embedded objects of the report.)';
  1570.             sTemp=L_IDH_acdefReportSnapshot_TEXT;
  1571.             break;
  1572.         case 'IDH_acdefScrollingTextControl':
  1573.             L_IDH_acdefScrollingTextControl_TEXT='(scrolling text control: A control used on a data access page to display a marquee, or moving text. You can customize the display of text by setting options such as direction and speed. Browsers that do not support scrolling text will display static text.)';
  1574.             sTemp=L_IDH_acdefScrollingTextControl_TEXT;
  1575.             break;
  1576.         case 'IDH_acdefServerFilterByForm':
  1577.             L_IDH_acdefServerFilterByForm_TEXT='(Server Filter By Form: A technique that uses a version of the current form or datasheet with empty fields in which you can type values you want the filtered records to contain. The data is filtered by the server before it\'s retrieved from the database.)';
  1578.             sTemp=L_IDH_acdefServerFilterByForm_TEXT;
  1579.             break;
  1580.         case 'IDH_acdefServergeneratedHTML':
  1581.             L_IDH_acdefServergeneratedHTML_TEXT='(server-generated HTML: An Active Server Pages (ASP) or IDC/HTX file that is output from a table, query, or form, connected to an ODBC data source, and processed by the Internet Information Server to dynamically create read-only HTML files.)';
  1582.             sTemp=L_IDH_acdefServergeneratedHTML_TEXT;
  1583.             break;
  1584.         case 'IDH_acdefSmalldatetimeDataType':
  1585.             L_IDH_acdefSmalldatetimeDataType_TEXT='(smalldatetime data type: In an Access project, a date and time data type that is less precise than the datetime data type. Data values range from January 1, 1900, through June 6, 2079, to an accuracy of one minute.)';
  1586.             sTemp=L_IDH_acdefSmalldatetimeDataType_TEXT;
  1587.             break;
  1588.         case 'IDH_acdefSmallintDataType':
  1589.             L_IDH_acdefSmallintDataType_TEXT='(smallint data type: In an Access project, a data type of 2 bytes (16 bits) that stores whole numbers in the range of -2^15 (-32,768) through 2^15 - 1 (32,767).)';
  1590.             sTemp=L_IDH_acdefSmallintDataType_TEXT;
  1591.             break;
  1592.         case 'IDH_acdefSmallmoneyDataType':
  1593.             L_IDH_acdefSmallmoneyDataType_TEXT='(smallmoney data type: In an Access project, a data type that stores monetary values from -214,748.3648 to 214,748.3647, with accuracy to a ten-thousandth of a monetary unit. When smallmoney values are displayed, they are rounded up to two decimal places.)';
  1594.             sTemp=L_IDH_acdefSmallmoneyDataType_TEXT;
  1595.             break;
  1596.         case 'IDH_acdefSnapshotViewer':
  1597.             L_IDH_acdefSnapshotViewer_TEXT='(Snapshot Viewer: A program that you can use to view, print, or mail a snapshot, such as a report snapshot. Snapshot Viewer 11.0 consists of a stand-alone executable program, a Snapshot Viewer control (Snapview.ocx), and other related files.)';
  1598.             sTemp=L_IDH_acdefSnapshotViewer_TEXT;
  1599.             break;
  1600.         case 'IDH_acdefSnapshotViewerControl':
  1601.             L_IDH_acdefSnapshotViewerControl_TEXT='(Snapshot Viewer control: An ActiveX control (Snapview.ocx) that you use to view a snapshot report from Microsoft Internet Explorer 3.0 or later, or from any application that supports ActiveX controls, such as Access or Microsoft Visual Basic.)';
  1602.             sTemp=L_IDH_acdefSnapshotViewerControl_TEXT;
  1603.             break;
  1604.         case 'IDH_acdefSubdatasheet':
  1605.             L_IDH_acdefSubdatasheet_TEXT='(subdatasheet: A datasheet that is nested within another datasheet and that contains data related or joined to the first datasheet.)';
  1606.             sTemp=L_IDH_acdefSubdatasheet_TEXT;
  1607.             break;
  1608.         case 'IDH_acdefSubscribe':
  1609.             L_IDH_acdefSubscribe_TEXT='(subscribe: To agree to receive a publication in an Access database (.mdb) or an Access project (.adp). A subscriber database subscribes to replicated data from a publisher database.)';
  1610.             sTemp=L_IDH_acdefSubscribe_TEXT;
  1611.             break;
  1612.         case 'IDH_acdefSubscription':
  1613.             L_IDH_acdefSubscription_TEXT='(subscription: The database that receives tables and data replicated from a publisher database in an Access project (.adp).)';
  1614.             sTemp=L_IDH_acdefSubscription_TEXT;
  1615.             break;
  1616.         case 'IDH_acdefSysnameDataType':
  1617.             L_IDH_acdefSysnameDataType_TEXT='(sysname data type: In an Access project, a special system-supplied, user-defined data type that is used for table columns, variables, and stored procedure parameters that store object names.)';
  1618.             sTemp=L_IDH_acdefSysnameDataType_TEXT;
  1619.             break;
  1620.         case 'IDH_acdefTextmemoDataType':
  1621.             L_IDH_acdefTextmemoDataType_TEXT='(text data type: In an Access project, a variable-length data type that can hold a maximum of 2^31 - 1 (2,147,483,647) characters; default length is 16.)';
  1622.             sTemp=L_IDH_acdefTextmemoDataType_TEXT;
  1623.             break;
  1624.         case 'IDH_acdefTheme':
  1625.             L_IDH_acdefTheme_TEXT='(theme: A collection of formats that determines the appearance of the controls, sections, body, and text on a data access page.)';
  1626.             sTemp=L_IDH_acdefTheme_TEXT;
  1627.             break;
  1628.         case 'IDH_acdefTimestampDataType':
  1629.             L_IDH_acdefTimestampDataType_TEXT='(timestamp data type: In an Access project, a data type that is automatically updated every time a row is inserted or updated. Values in timestamp columns are not datetime data, but binary(8) or varbinary(8), indicating the sequence of data modifications.)';
  1630.             sTemp=L_IDH_acdefTimestampDataType_TEXT;
  1631.             break;
  1632.         case 'IDH_acdefTinyintDataType':
  1633.             L_IDH_acdefTinyintDataType_TEXT='(tinyint data type: In an Access project, a data type of 1 byte (8 bits) that stores whole numbers in the range of 0 through 255.)';
  1634.             sTemp=L_IDH_acdefTinyintDataType_TEXT;
  1635.             break;
  1636.         case 'IDH_acdefTopology':
  1637.             L_IDH_acdefTopology_TEXT='(topology: The order in which changes are propagated from replica to replica. Topology is important because it determines how quickly changes in another replica appear in your replica.)';
  1638.             sTemp=L_IDH_acdefTopology_TEXT;
  1639.             break;
  1640.         case 'IDH_acdefUniqueidentifierDataType':
  1641.             L_IDH_acdefUniqueidentifierDataType_TEXT='(uniqueidentifier data type: In an Access project, a 16-byte globally unique identifier (GUID).)';
  1642.             sTemp=L_IDH_acdefUniqueidentifierDataType_TEXT;
  1643.             break;
  1644.         case 'IDH_acdefUpdatableSnapshot':
  1645.             L_IDH_acdefUpdatableSnapshot_TEXT='(updateable snapshot: A type of recordset that works efficiently in a client/server environment by caching data on the client and minimizing round trips to the server to access and update data.)';
  1646.             sTemp=L_IDH_acdefUpdatableSnapshot_TEXT;
  1647.             break;
  1648.         case 'IDH_acdefVarbinaryDataType':
  1649.             L_IDH_acdefVarbinaryDataType_TEXT='(varbinary data type: In an Access project, a variable-length data type with a maximum of 8,000 bytes of binary data.)';
  1650.             sTemp=L_IDH_acdefVarbinaryDataType_TEXT;
  1651.             break;
  1652.         case 'IDH_acdefVarchartextDataType':
  1653.             L_IDH_acdefVarchartextDataType_TEXT='(varchar (n) data type: In an Access project, a variable-length data type with a maximum of 8,000 ANSI characters.)';
  1654.             sTemp=L_IDH_acdefVarchartextDataType_TEXT;
  1655.             break;
  1656.         case 'IDH_acdefVisibility':
  1657.             L_IDH_acdefVisibility_TEXT='(visibility: A property of a replica that indicates which members of the replica set it can synchronize with and which conflict resolution rules apply. Replicas fall into three visibility types: global, local, and anonymous.)';
  1658.             sTemp=L_IDH_acdefVisibility_TEXT;
  1659.             break;
  1660.         case 'IDH_acdefWebPagePreview':
  1661.             L_IDH_acdefWebPagePreview_TEXT='(Web Page Preview: Opens a data access page for preview in Microsoft Internet Explorer 5 or later.)';
  1662.             sTemp=L_IDH_acdefWebPagePreview_TEXT;
  1663.             break;
  1664.         case 'rpldefDBReplication':
  1665.             L_rpldefDBReplication_TEXT='(database replication: The process of creating two or more special copies (replicas) of an Access database. Replicas can be synchronized, changes made to data in one replica, or design changes made in the Design Master, are sent to other replicas.)';
  1666.             sTemp=L_rpldefDBReplication_TEXT;
  1667.             break;
  1668.         case 'rpldefGUID':
  1669.             L_rpldefGUID_TEXT='(GUID: A 16-byte field used in an Access database to establish a unique identifier for replication. GUIDs are used to identify replicas, replica sets, tables, records, and other objects. In an Access database, GUIDs are referred to as Replication IDs.)';
  1670.             sTemp=L_rpldefGUID_TEXT;
  1671.             break;
  1672.         case 'rpldefReplica':
  1673.             L_rpldefReplica_TEXT='(replica: A copy of a database that is a member of a replica set and can be synchronized with other replicas in the set. Changes to the data in a replicated table in one replica are sent and applied to the other replicas.)';
  1674.             sTemp=L_rpldefReplica_TEXT;
  1675.             break;
  1676.         case 'rpldefReplication':
  1677.             L_rpldefReplication_TEXT='(replication: The process of copying a database so that two or more copies can exchange updates of data or replicated objects. This exchange is called synchronization.)';
  1678.             sTemp=L_rpldefReplication_TEXT;
  1679.             break;
  1680.         case 'rpldefSynchronization':
  1681.             L_rpldefSynchronization_TEXT='(synchronization: The process of updating two members of a replica set by exchanging all updated records and objects in each member. Two replica set members are synchronized when the changes in each have been applied to the other.)';
  1682.             sTemp=L_rpldefSynchronization_TEXT;
  1683.             break;
  1684.  
  1685.         // Excel
  1686.  
  1687.         case 'defDDEConversation':
  1688.             L_defDDEConversation_TEXT='(DDE conversation: The interaction between two applications that are communicating and exchanging data through special functions and code known as dynamic data exchange (DDE).)';
  1689.             sTemp=L_defDDEConversation_TEXT;
  1690.             break;
  1691.         case 'defQueryChannel':
  1692.             L_defQueryChannel_TEXT='(query channel: You use a query channel in a DDE conversation between the destination application and a specific query (for example, Query1) in Query. To use a query channel, you must have already opened the query window using a system channel.)';
  1693.             sTemp=L_defQueryChannel_TEXT;
  1694.             break;
  1695.         case 'defSystemChannel':
  1696.             L_defSystemChannel_TEXT='(system channel: Used in a DDE conversation between applications to get information about the system, such as the current connections, open queries, and the status of the destination application.)';
  1697.             sTemp=L_defSystemChannel_TEXT;
  1698.             break;
  1699.         case 'dldefmovingBorder':
  1700.             L_dldefmovingBorder_TEXT='(moving border: An animated border that appears around a worksheet range that has been cut or copied. To cancel a moving border, press ESC.)';
  1701.             sTemp=L_dldefmovingBorder_TEXT;
  1702.             break;
  1703.         case 'grColumnHeading':
  1704.             L_grColumnHeading_TEXT='(column heading: The shaded area at the top of each Data pane column that contains the field name.)';
  1705.             sTemp=L_grColumnHeading_TEXT;
  1706.             break;
  1707.         case 'grdefChartArea':
  1708.             L_grdefChartArea_TEXT='(chart area: The entire chart and all its elements.)';
  1709.             sTemp=L_grdefChartArea_TEXT;
  1710.             break;
  1711.         case 'grdefComparisonOperator':
  1712.             L_grdefComparisonOperator_TEXT='(comparison operator: A sign that is used in comparison criteria to compare two values. The six standards are = Equal to, > Greater than, < Less than, >= Greater than or equal to, <= Less than or equal to, and <> Not equal to.)';
  1713.             sTemp=L_grdefComparisonOperator_TEXT;
  1714.             break;
  1715.         case 'grdefDataLabel':
  1716.             L_grdefDataLabel_TEXT='(data label: A label that provides additional information about a data marker, which represents a single data point or value that originates from a datasheet cell.)';
  1717.             sTemp=L_grdefDataLabel_TEXT;
  1718.             break;
  1719.         case 'grdefDataMarker':
  1720.             L_grdefDataMarker_TEXT='(data marker: A bar, area, dot, slice, or other symbol in a chart that represents a single data point or value that originates from a datasheet cell. Related data markers in a chart constitute a data series.)';
  1721.             sTemp=L_grdefDataMarker_TEXT;
  1722.             break;
  1723.         case 'grdefDataPoints':
  1724.             L_grdefDataPoints_TEXT='(data points: Individual values plotted in a chart and represented by bars, columns, lines, pie or doughnut slices, dots, and various other shapes called data markers. Data markers of the same color constitute a data series.)';
  1725.             sTemp=L_grdefDataPoints_TEXT;
  1726.             break;
  1727.         case 'grdefDataRegion':
  1728.             L_grdefDataRegion_TEXT='(data region: A range of cells that contains data and that is bounded by empty cells or datasheet borders.)';
  1729.             sTemp=L_grdefDataRegion_TEXT;
  1730.             break;
  1731.         case 'grdefDataSeries':
  1732.             L_grdefDataSeries_TEXT='(data series: Related data points that are plotted in a chart and originate from datasheet rows or columns. Each data series in a chart has a unique color or pattern. You can plot one or more data series in a chart. Pie charts have only one data series.)';
  1733.             sTemp=L_grdefDataSeries_TEXT;
  1734.             break;
  1735.         case 'grdefDataTableInCharts':
  1736.             L_grdefDataTableInCharts_TEXT='(data table in a chart: A grid attached to a chart that displays the data used to create the chart. The data table usually is attached to the category axis of the chart and replaces the tick-mark labels on the category axis.)';
  1737.             sTemp=L_grdefDataTableInCharts_TEXT;
  1738.             break;
  1739.         case 'grdefErrorBars':
  1740.             L_grdefErrorBars_TEXT='(error bars: Usually used in statistical or scientific data, error bars show potential error or degree of uncertainty relative to each data marker in a series.)';
  1741.             sTemp=L_grdefErrorBars_TEXT;
  1742.             break;
  1743.         case 'grdefPoint':
  1744.             L_grdefPoint_TEXT='(point: A unit of measurement equal to 1/72 of an inch.)';
  1745.             sTemp=L_grdefPoint_TEXT;
  1746.             break;
  1747.         case 'grdefSelect':
  1748.             L_grdefSelect_TEXT='(select: To highlight a cell or range of cells on a datasheet. The selected cells will be affected by the next command or action.)';
  1749.             sTemp=L_grdefSelect_TEXT;
  1750.             break;
  1751.         case 'grdefTextBox':
  1752.             L_grdefTextBox_TEXT='(text box: A rectangular object on a chart in which you can type text.)';
  1753.             sTemp=L_grdefTextBox_TEXT;
  1754.             break;
  1755.         case 'grdefToolbar':
  1756.             L_grdefToolbar_TEXT='(toolbar: A bar with buttons and options that you can use to carry out commands. To display a toolbar, point to <b>Toolbars</b> on the <b>View</b> menu, and then click the toolbar you want. If the button you want doesn\'t appear, click <b>More Buttons</b>.)';
  1757.             sTemp=L_grdefToolbar_TEXT;
  1758.             break;
  1759.         case 'grRowHeading':
  1760.             L_grRowHeading_TEXT='(row heading: The numbered gray area to the left of each row. Click the row heading to select an entire row.)';
  1761.             sTemp=L_grRowHeading_TEXT;
  1762.             break;
  1763.         case 'grSelectAllButton':
  1764.             L_grSelectAllButton_TEXT='(Select All button: The gray rectangle in the upper-left corner of a datasheet where the row and column headings meet. Click this button to select all cells on a datasheet.)';
  1765.             sTemp=L_grSelectAllButton_TEXT;
  1766.             break;
  1767.         case 'IDH_grdefDropdownlist':
  1768.             L_IDH_grdefDropdownlist_TEXT='(drop-down list box: A control on a menu, toolbar, or dialog box that displays a list of options when you click the small arrow next to the list box.)';
  1769.             sTemp=L_IDH_grdefDropdownlist_TEXT;
  1770.             break;
  1771.         case 'IDH_grdefRsquaredValue':
  1772.             L_IDH_grdefRsquaredValue_TEXT='(R-squared value: A number from 0 to 1 that reveals how closely the estimated values for the trendline correspond to your actual data. A trendline is most reliable when its R-squared value is at or near 1. Also known as the coefficient of determination.)';
  1773.             sTemp=L_IDH_grdefRsquaredValue_TEXT;
  1774.             break;
  1775.         case 'IDH_grdefVertexes':
  1776.             L_IDH_grdefVertexes_TEXT='(vertexes: Black, square, draggable points that appear at the ends and intersections of lines or curves in certain AutoShapes (such as freeforms, scribbles, and curves) when you edit points on the AutoShape.)';
  1777.             sTemp=L_IDH_grdefVertexes_TEXT;
  1778.             break;
  1779.         case 'IDH_qudefAddress':
  1780.             L_IDH_qudefAddress_TEXT='(address: The path to an object, document, file, page, or other destination. An address can be a URL (Web address) or a UNC path (network address), and can include a specific location within a file, such as a Word bookmark or an Excel cell range.)';
  1781.             sTemp=L_IDH_qudefAddress_TEXT;
  1782.             break;
  1783.         case 'IDH_qudefCalculatedField':
  1784.             L_IDH_qudefCalculatedField_TEXT='(calculated field: A field in the result set of a query that displays the result of an expression rather than data from a database.)';
  1785.             sTemp=L_IDH_qudefCalculatedField_TEXT;
  1786.             break;
  1787.         case 'IDH_qudefConstant':
  1788.             L_IDH_qudefConstant_TEXT='(constant: A value that is not calculated. For example, the number 210 and the text \"Quarterly Earnings\" are constants. An expression, or a value resulting from an expression, is not a constant.)';
  1789.             sTemp=L_IDH_qudefConstant_TEXT;
  1790.             break;
  1791.         case 'IDH_qudefCriteriaPane':
  1792.             L_IDH_qudefCriteriaPane_TEXT='(criteria pane: The area of the window that displays the criteria used to limit the records included in the result set of your query.)';
  1793.             sTemp=L_IDH_qudefCriteriaPane_TEXT;
  1794.             break;
  1795.         case 'IDH_qudefDataPane':
  1796.             L_IDH_qudefDataPane_TEXT='(data pane: The area of the window that displays the result set of your query.)';
  1797.             sTemp=L_IDH_qudefDataPane_TEXT;
  1798.             break;
  1799.         case 'IDH_qudefExternalData':
  1800.             L_IDH_qudefExternalData_TEXT='(external data: Data that is stored in a database, such as Access, dBASE, or SQL Server, that is separate from Query and the program from which you started Query.)';
  1801.             sTemp=L_IDH_qudefExternalData_TEXT;
  1802.             break;
  1803.         case 'IDH_qudefFunction':
  1804.             L_IDH_qudefFunction_TEXT='(function: An expression that returns a value based on the results of a calculation. Query assumes that data sources support the Avg, Count, Max, Min, and Sum functions. Some data sources may not support all of these, or may support additional functions.)';
  1805.             sTemp=L_IDH_qudefFunction_TEXT;
  1806.             break;
  1807.         case 'IDH_qudefIndex':
  1808.             L_IDH_qudefIndex_TEXT='(index: A database component that speeds up searching for data. When a table has an index, data in the table can be found by looking it up in the index.)';
  1809.             sTemp=L_IDH_qudefIndex_TEXT;
  1810.             break;
  1811.         case 'IDH_qudefJoin':
  1812.             L_IDH_qudefJoin_TEXT='(join: A connection between multiple tables where records from related fields that match are combined and shown as one record. Records that don\'t match may be included or excluded, depending on the type of join.)';
  1813.             sTemp=L_IDH_qudefJoin_TEXT;
  1814.             break;
  1815.         case 'IDH_qudefName':
  1816.             L_IDH_qudefName_TEXT='(name: A word or string of characters in Excel that represents a cell, range of cells, formula, or constant value.)';
  1817.             sTemp=L_IDH_qudefName_TEXT;
  1818.             break;
  1819.         case 'IDH_qudefPassword':
  1820.             L_IDH_qudefPassword_TEXT='(password: A word, phrase, or string of characters used to prevent unauthorized access to a database. To gain access to the database, you must enter the password correctly.)';
  1821.             sTemp=L_IDH_qudefPassword_TEXT;
  1822.             break;
  1823.         case 'IDH_qudefPivotTable':
  1824.             L_IDH_qudefPivotTable_TEXT='(PivotTable report: An interactive, crosstabulated Excel report that summarizes and analyzes data, such as database records, from various sources including ones external to Excel.)';
  1825.             sTemp=L_IDH_qudefPivotTable_TEXT;
  1826.             break;
  1827.         case 'IDH_qudefQuerysDesign':
  1828.             L_IDH_qudefQuerysDesign_TEXT='(query design: All elements included in the Query window, such as tables, criteria, the order in which fields are arranged, and so on. The design also specifies whether Auto Query is turned on, and whether you can edit the source data.)';
  1829.             sTemp=L_IDH_qudefQuerysDesign_TEXT;
  1830.             break;
  1831.         case 'IDH_qudefReadonly':
  1832.             L_IDH_qudefReadonly_TEXT='(read-only: A setting that allows a file to be read or copied but not changed or saved.)';
  1833.             sTemp=L_IDH_qudefReadonly_TEXT;
  1834.             break;
  1835.         case 'IDH_qudefSortOrder':
  1836.             L_IDH_qudefSortOrder_TEXT='(sort order: A way to arrange data based on value or data type. You can sort data alphabetically, numerically, or by date. Sort orders use an ascending (1 to 9, A to Z) or descending (9 to 1, Z to A) order.)';
  1837.             sTemp=L_IDH_qudefSortOrder_TEXT;
  1838.             break;
  1839.         case 'IDH_qudefStructuredQueryLanguageSQL':
  1840.             L_IDH_qudefStructuredQueryLanguageSQL_TEXT='(SQL: A language used to retrieve, update, and manage data. When you create a query, Query uses SQL to build the corresponding <b>SQL SELECT</b> statement. If you know SQL, you can view or change the <b>SQL SELECT</b> statement.)';
  1841.             sTemp=L_IDH_qudefStructuredQueryLanguageSQL_TEXT;
  1842.             break;
  1843.         case 'IDH_qudefTablePane':
  1844.             L_IDH_qudefTablePane_TEXT='(table pane: The area of the Query window that displays the tables in a query. Each table displays the fields from which you can retrieve data.)';
  1845.             sTemp=L_IDH_qudefTablePane_TEXT;
  1846.             break;
  1847.         case 'IDH_qudefWorldWideWeb':
  1848.             L_IDH_qudefWorldWideWeb_TEXT='(World Wide Web: A system for navigating the Internet by using hyperlinks. When you use a Web browser, the Web appears as a collection of text, pictures, sounds, and digital movies.)';
  1849.             sTemp=L_IDH_qudefWorldWideWeb_TEXT;
  1850.             break;
  1851.         case 'IDH_xldef3DReference':
  1852.             L_IDH_xldef3DReference_TEXT='(3-D reference: A reference to a range that spans two or more worksheets in a workbook.)';
  1853.             sTemp=L_IDH_xldef3DReference_TEXT;
  1854.             break;
  1855.         case 'IDH_xldefArgument':
  1856.             L_IDH_xldefArgument_TEXT='(argument: The values that a function uses to perform operations or calculations. The type of argument a function uses is specific to the function. Common arguments that are used within functions include numbers, text, cell references, and names.)';
  1857.             sTemp=L_IDH_xldefArgument_TEXT;
  1858.             break;
  1859.         case 'IDH_xldefArrayFormula':
  1860.             L_IDH_xldefArrayFormula_TEXT='(array formula: A formula that performs multiple calculations on one or more sets of values, and then returns either a single result or multiple results. Array formulas are enclosed between braces { } and are entered by pressing CTRL+SHIFT+ENTER.)';
  1861.             sTemp=L_IDH_xldefArrayFormula_TEXT;
  1862.             break;
  1863.         case 'IDH_xldefBaseAddress':
  1864.             L_IDH_xldefBaseAddress_TEXT='(base address: The relative path that Excel uses for the destination address when you insert a hyperlink. This can be an Internet address (URL), a path to a folder on your hard drive, or a path to a folder on a network.)';
  1865.             sTemp=L_IDH_xldefBaseAddress_TEXT;
  1866.             break;
  1867.         case 'IDH_xldefCalculatedField':
  1868.             L_IDH_xldefCalculatedField_TEXT='(calculated field: A field in a PivotTable report or PivotChart report that uses a formula you create. Calculated fields can perform calculations by using the contents of other fields in the PivotTable report or PivotChart report.)';
  1869.             sTemp=L_IDH_xldefCalculatedField_TEXT;
  1870.             break;
  1871.         case 'IDH_xldefCalculatedItem':
  1872.             L_IDH_xldefCalculatedItem_TEXT='(calculated item: An item within a PivotTable field or PivotChart field that uses a formula you create. Calculated items can perform calculations by using the contents of other items within the same field of the PivotTable report or PivotChart report.)';
  1873.             sTemp=L_IDH_xldefCalculatedItem_TEXT;
  1874.             break;
  1875.         case 'IDH_xldefCertifyingAuthority':
  1876.             L_IDH_xldefCertifyingAuthority_TEXT='(certifying authority: A commercial organization, or a group within a company, that uses tools such as Microsoft Certificate Server to provide digital certificates that software developers can use to sign macros and users can use to sign documents.)';
  1877.             sTemp=L_IDH_xldefCertifyingAuthority_TEXT;
  1878.             break;
  1879.         case 'IDH_xldefColumnHeading':
  1880.             L_IDH_xldefColumnHeading_TEXT='(column heading: The lettered or numbered gray area at the top of each column. Click the column heading to select an entire column. To increase or decrease the width of a column, drag the line to the right of the column heading.)';
  1881.             sTemp=L_IDH_xldefColumnHeading_TEXT;
  1882.             break;
  1883.         case 'IDH_xldefConditionalFormat':
  1884.             L_IDH_xldefConditionalFormat_TEXT='(conditional format: A format, such as cell shading or font color, that Excel automatically applies to cells if a specified condition is true.)';
  1885.             sTemp=L_IDH_xldefConditionalFormat_TEXT;
  1886.             break;
  1887.         case 'IDH_xldefDataAccessPageDesignView':
  1888.             L_IDH_xldefDataAccessPageDesignView_TEXT='(data access page Design view: A window in Access in which you design data access pages, Web pages with connections to databases.)';
  1889.             sTemp=L_IDH_xldefDataAccessPageDesignView_TEXT;
  1890.             break;
  1891.         case 'IDH_xldefDataSourceDriver':
  1892.             L_IDH_xldefDataSourceDriver_TEXT='(data source driver: A program file used to connect to a specific database. Each database program or management system requires a different driver.)';
  1893.             sTemp=L_IDH_xldefDataSourceDriver_TEXT;
  1894.             break;
  1895.         case 'IDH_xldefDefaultWorkbookTemplate':
  1896.             L_IDH_xldefDefaultWorkbookTemplate_TEXT='(default workbook template: The Book.xlt template that you create to change the default format of new workbooks. Excel uses the template to create a blank workbook when you start Excel or create a new workbook without specifying a template.)';
  1897.             sTemp=L_IDH_xldefDefaultWorkbookTemplate_TEXT;
  1898.             break;
  1899.         case 'IDH_xldefDropArea':
  1900.             L_IDH_xldefDropArea_TEXT='(drop area: An area in a PivotTable or PivotChart report where you can drop fields from the <b>Field List</b> dialog box to display the data in the field. The labels on each drop area indicate the types of fields you can create in the report.)';
  1901.             sTemp=L_IDH_xldefDropArea_TEXT;
  1902.             break;
  1903.         case 'IDH_xldefDropdownListBox':
  1904.             L_IDH_xldefDropdownListBox_TEXT='(drop-down list box: A control on a menu, toolbar, or dialog box that displays a list of options when you click the small arrow next to the list box.)';
  1905.             sTemp=L_IDH_xldefDropdownListBox_TEXT;
  1906.             break;
  1907.         case 'IDH_xldefExternalDataRange':
  1908.             L_IDH_xldefExternalDataRange_TEXT='(external data range: A range of data that is brought into a worksheet but that originates outside of Excel, such as in a database or text file. In Excel, you can format the data or use it in calculations as you would any other data.)';
  1909.             sTemp=L_IDH_xldefExternalDataRange_TEXT;
  1910.             break;
  1911.         case 'IDH_xldefExternalReference':
  1912.             L_IDH_xldefExternalReference_TEXT='(external reference: A reference to a cell or range on a sheet in another Excel workbook, or a reference to a defined name in another workbook.)';
  1913.             sTemp=L_IDH_xldefExternalReference_TEXT;
  1914.             break;
  1915.         case 'IDH_xldefField':
  1916.             L_IDH_xldefField_TEXT='(field: A category of information, such as last name or order amount, that is stored in a table. When Query displays a result set in its Data pane, a field is represented as a column.)';
  1917.             sTemp=L_IDH_xldefField_TEXT;
  1918.             break;
  1919.         case 'IDH_xldefFormulaPalette':
  1920.             L_IDH_xldefFormulaPalette_TEXT='(Formula Palette: A tool that helps you create or edit a formula and also provides information about functions and their arguments.)';
  1921.             sTemp=L_IDH_xldefFormulaPalette_TEXT;
  1922.             break;
  1923.         case 'IDH_xldefFunction':
  1924.             L_IDH_xldefFunction_TEXT='(function: A prewritten formula that takes a value or values, performs an operation, and returns a value or values. Use functions to simplify and shorten formulas on a worksheet, especially those that perform lengthy or complex calculations.)';
  1925.             sTemp=L_IDH_xldefFunction_TEXT;
  1926.             break;
  1927.         case 'IDH_xldefHistoryWorksheet':
  1928.             L_IDH_xldefHistoryWorksheet_TEXT='(History worksheet: A separate worksheet that lists changes being tracked in a shared workbook, including the name of the person who made the change, when and where it was made, what data was deleted or replaced, and how conflicts were resolved.)';
  1929.             sTemp=L_IDH_xldefHistoryWorksheet_TEXT;
  1930.             break;
  1931.         case 'IDH_xldefImplicitIntersection':
  1932.             L_IDH_xldefImplicitIntersection_TEXT='(implicit intersection: A reference to a range of cells, instead of a single cell, that is calculated like a single cell. If cell C10 contains the formula =B5:B15*5, Excel multiplies the value in cell B10 by 5 because cells B10 and C10 are in the same row.)';
  1933.             sTemp=L_IDH_xldefImplicitIntersection_TEXT;
  1934.             break;
  1935.         case 'IDH_xldefJoinLine':
  1936.             L_IDH_xldefJoinLine_TEXT='(join line: In Query, a line that connects fields between two tables and shows Query how the data is related. The type of join indicates which records are selected for the query\'s result set.)';
  1937.             sTemp=L_IDH_xldefJoinLine_TEXT;
  1938.             break;
  1939.         case 'IDH_xldefLockedFieldOrRecord':
  1940.             L_IDH_xldefLockedFieldOrRecord_TEXT='(locked field or record: The condition of a record, field, or other object in a database that permits it to be viewed but not changed (read-only) in Query.)';
  1941.             sTemp=L_IDH_xldefLockedFieldOrRecord_TEXT;
  1942.             break;
  1943.         case 'IDH_xldefMatrix':
  1944.             L_IDH_xldefMatrix_TEXT='(matrix: A rectangular array of values or a range of cells that is combined with other arrays or ranges to produce multiple sums or products. Excel has predefined matrix functions that can produce the sums or products.)';
  1945.             sTemp=L_IDH_xldefMatrix_TEXT;
  1946.             break;
  1947.         case 'IDH_xldefMergedCell':
  1948.             L_IDH_xldefMergedCell_TEXT='(merged cell: A single cell that is created by combining two or more selected cells. The cell reference for a merged cell is the upper-left cell in the original selected range.)';
  1949.             sTemp=L_IDH_xldefMergedCell_TEXT;
  1950.             break;
  1951.         case 'IDH_xldefMultCategoryLabels':
  1952.             L_IDH_xldefMultCategoryLabels_TEXT='(multiple-level category labels: Category labels in a chart that, based on worksheet data, are automatically displayed on more than one line in a hierarchy. For example, the heading Produce might appear above a row with headings Tofu, Apples, and Pears.)';
  1953.             sTemp=L_IDH_xldefMultCategoryLabels_TEXT;
  1954.             break;
  1955.         case 'IDH_xldefName':
  1956.             L_IDH_xldefName_TEXT='(name: A word or string of characters that represents a cell, range of cells, formula, or constant value. Use easy-to-understand names, such as Products, to refer to hard to understand ranges, such as Sales!C20:C30.)';
  1957.             sTemp=L_IDH_xldefName_TEXT;
  1958.             break;
  1959.         case 'IDH_xldefNonOLAP':
  1960.             L_IDH_xldefNonOLAP_TEXT='(non-OLAP source data: Underlying data for a PivotTable or PivotChart report that comes from a source other than an OLAP database. These sources include relational databases, lists on Excel worksheets, and text file databases.)';
  1961.             sTemp=L_IDH_xldefNonOLAP_TEXT;
  1962.             break;
  1963.         case 'IDH_xldefOperand':
  1964.             L_IDH_xldefOperand_TEXT='(operand: Items on either side of an operator in a formula. In Excel, operands can be values, cell references, names, labels, and functions.)';
  1965.             sTemp=L_IDH_xldefOperand_TEXT;
  1966.             break;
  1967.         case 'IDH_xldefOuterJoin':
  1968.             L_IDH_xldefOuterJoin_TEXT='(outer join: Join in which all records from one table are selected, even if there are no matching records in another table. Records that match are combined and shown as one. Records that don\'t have matches in the other table are shown as empty.)';
  1969.             sTemp=L_IDH_xldefOuterJoin_TEXT;
  1970.             break;
  1971.         case 'IDH_xldefOutlineData':
  1972.             L_IDH_xldefOutlineData_TEXT='(outline data: The data that is contained within a worksheet outline. Outline data includes both the summary and detail rows or columns of an outline.)';
  1973.             sTemp=L_IDH_xldefOutlineData_TEXT;
  1974.             break;
  1975.         case 'IDH_xldefPageBreak':
  1976.             L_IDH_xldefPageBreak_TEXT='(page break: Divider that breaks a worksheet into separate pages for printing. Excel inserts automatic page breaks based on the paper size, margin settings, scaling options, and the positions of any manual page breaks that you insert.)';
  1977.             sTemp=L_IDH_xldefPageBreak_TEXT;
  1978.             break;
  1979.         case 'IDH_xldefParameterQuery':
  1980.             L_IDH_xldefParameterQuery_TEXT='(parameter query: A type of query that, when you run it, prompts for values (criteria) to use to select the records for the result set so that the same query can be used to retrieve different result sets.)';
  1981.             sTemp=L_IDH_xldefParameterQuery_TEXT;
  1982.             break;
  1983.         case 'IDH_xldefPivotChart':
  1984.             L_IDH_xldefPivotChart_TEXT='(PivotChart report: A chart that provides interactive analysis of data, like a PivotTable report. You can change views of data, see different levels of detail, or reorganize the chart layout by dragging fields and by showing or hiding items in fields.)';
  1985.             sTemp=L_IDH_xldefPivotChart_TEXT;
  1986.             break;
  1987.         case 'IDH_xldefPivotChartCatField':
  1988.             L_IDH_xldefPivotChartCatField_TEXT='(PivotChart category field: A field that is assigned a category orientation in a PivotChart report. In a chart, categories usually appear on the x-axis, or horizontal axis, of the chart.)';
  1989.             sTemp=L_IDH_xldefPivotChartCatField_TEXT;
  1990.             break;
  1991.         case 'IDH_xldefPivotChartSeriesField':
  1992.             L_IDH_xldefPivotChartSeriesField_TEXT='(PivotChart series field: A field that is assigned a series orientation in a PivotChart report. In a chart, series are represented in the legend.)';
  1993.             sTemp=L_IDH_xldefPivotChartSeriesField_TEXT;
  1994.             break;
  1995.         case 'IDH_xldefPivotTableRefresh':
  1996.             L_IDH_xldefPivotTableRefresh_TEXT='(refresh: To update the contents of a PivotTable or PivotChart report to reflect changes to the underlying source data. If the report is based on external data, refreshing runs the underlying query to retrieve new or changed data.)';
  1997.             sTemp=L_IDH_xldefPivotTableRefresh_TEXT;
  1998.             break;
  1999.         case 'IDH_xldefPrimaryKey':
  2000.             L_IDH_xldefPrimaryKey_TEXT='(primary key: One or more fields that uniquely identify each record in a table. In the same way that a license plate number identifies a car, the primary key uniquely identifies a record.)';
  2001.             sTemp=L_IDH_xldefPrimaryKey_TEXT;
  2002.             break;
  2003.         case 'IDH_xldefPrintTitles':
  2004.             L_IDH_xldefPrintTitles_TEXT='(print titles: Row or column labels that are printed at the top of or on the left side of every page on a printed worksheet.)';
  2005.             sTemp=L_IDH_xldefPrintTitles_TEXT;
  2006.             break;
  2007.         case 'IDH_xldefQueryTemplate':
  2008.             L_IDH_xldefQueryTemplate_TEXT='(report template: An Excel template (.xlt file) that includes one or more queries or PivotTable reports that are based on external data. When you save a report template, Excel saves the query definition but doesn\'t store the queried data in the template.)';
  2009.             sTemp=L_IDH_xldefQueryTemplate_TEXT;
  2010.             break;
  2011.         case 'IDH_xldefRefresh':
  2012.             L_IDH_xldefRefresh_TEXT='(refresh: To update data from an external data source. Each time you refresh data, you see the most recent version of the information in the database, including any changes that were made to the data.)';
  2013.             sTemp=L_IDH_xldefRefresh_TEXT;
  2014.             break;
  2015.         case 'IDH_xldefRemoteReference':
  2016.             L_IDH_xldefRemoteReference_TEXT='(remote reference: A reference to data stored in a document from another program.)';
  2017.             sTemp=L_IDH_xldefRemoteReference_TEXT;
  2018.             break;
  2019.         case 'IDH_xldefRevisionHistory':
  2020.             L_IDH_xldefRevisionHistory_TEXT='(change history: In a shared workbook, information that is maintained about changes made in past editing sessions. The information includes the name of the person who made each change, when the change was made, and what data was changed.)';
  2021.             sTemp=L_IDH_xldefRevisionHistory_TEXT;
  2022.             break;
  2023.         case 'IDH_xldefRowHeading':
  2024.             L_IDH_xldefRowHeading_TEXT='(row heading: The numbered gray area to the left of each row. Click the row heading to select an entire row. To increase or decrease the height of a row, drag the line below the row heading.)';
  2025.             sTemp=L_IDH_xldefRowHeading_TEXT;
  2026.             break;
  2027.         case 'IDH_xldefSharedWorkbook':
  2028.             L_IDH_xldefSharedWorkbook_TEXT='(shared workbook: A workbook set up to allow multiple users on a network to view and make changes at the same time. Each user who saves the workbook sees the changes made by other users. You must have Excel 97 or later to modify a shared workbook.)';
  2029.             sTemp=L_IDH_xldefSharedWorkbook_TEXT;
  2030.             break;
  2031.         case 'IDH_xldefTable':
  2032.             L_IDH_xldefTable_TEXT='(table: A collection of data about a particular subject that is stored in records (rows) and fields (columns).)';
  2033.             sTemp=L_IDH_xldefTable_TEXT;
  2034.             break;
  2035.         case 'IDH_xldefTotals':
  2036.             L_IDH_xldefTotals_TEXT='(totals: One of the five calculation types Query defines for you: Sum, Avg, Count, Min, and Max.)';
  2037.             sTemp=L_IDH_xldefTotals_TEXT;
  2038.             break;
  2039.         case 'IDH_xldefTracerArrows':
  2040.             L_IDH_xldefTracerArrows_TEXT='(tracer arrows: Arrows that show the relationship between the active cell and its related cells. Tracer arrows are blue when pointing from a cell that provides data to another cell, and red if a cell contains an error value, such as #DIV/0!.)';
  2041.             sTemp=L_IDH_xldefTracerArrows_TEXT;
  2042.             break;
  2043.         case 'IDH_xldefVertexes':
  2044.             L_IDH_xldefVertexes_TEXT='(vertexes: Black, square, draggable points that appear at the ends and intersections of lines or curves in certain AutoShapes, such as freeforms, scribbles, and curves.)';
  2045.             sTemp=L_IDH_xldefVertexes_TEXT;
  2046.             break;
  2047.         case 'IDH_xldefWeb':
  2048.             L_IDH_xldefWeb_TEXT='(Web: A system for navigating through a collection of workbooks and other Office documents connected by hyperlinks and located on a network share, a company intranet, and the Internet.)';
  2049.             sTemp=L_IDH_xldefWeb_TEXT;
  2050.             break;
  2051.         case 'IDH_xldefWebQuery':
  2052.             L_IDH_xldefWebQuery_TEXT='(Web query: A query that retrieves data stored on your intranet or the Internet.)';
  2053.             sTemp=L_IDH_xldefWebQuery_TEXT;
  2054.             break;
  2055.         case 'IDH_xldefWhatifAnalysis':
  2056.             L_IDH_xldefWhatifAnalysis_TEXT='(what-if analysis: A process of changing the values in cells to see how those changes affect the outcome of formulas on the worksheet. For example, varying the interest rate that is used in an amortization table to determine the amount of the payments.)';
  2057.             sTemp=L_IDH_xldefWhatifAnalysis_TEXT;
  2058.             break;
  2059.         case 'IDH_xldefWorkspaceFile':
  2060.             L_IDH_xldefWorkspaceFile_TEXT='(workspace file: A file that saves display information about open workbooks, so that you can later resume work with the same window sizes, print areas, screen magnification, and display settings. A workspace file doesn\'t contain the workbooks themselves.)';
  2061.             sTemp=L_IDH_xldefWorkspaceFile_TEXT;
  2062.             break;
  2063.         case 'IxldefHighlowLines':
  2064.             L_IxldefHighlowLines_TEXT='(high-low lines: In 2-D line charts, lines that extend from the highest to the lowest value in each category. High-low lines are often used in stock charts.)';
  2065.             sTemp=L_IxldefHighlowLines_TEXT;
  2066.             break;
  2067.         case 'qudecIdentifier':
  2068.             L_qudecIdentifier_TEXT='(identifier: A field name used in an expression. For example, Order Amount is the identifier (field name) for a field that contains order amounts. You can use an expression (such as Price*Quantity) in place of an identifier.)';
  2069.             sTemp=L_qudecIdentifier_TEXT;
  2070.             break;
  2071.         case 'qudefCriteria':
  2072.             L_qudefCriteria_TEXT='(criteria: Conditions you specify to limit which records are included in the result set of a query. For example, the following criterion selects records for which the value for the Order Amount field is greater than 30,000: Order Amount > 30000.)';
  2073.             sTemp=L_qudefCriteria_TEXT;
  2074.             break;
  2075.         case 'qudefDatabase':
  2076.             L_qudefDatabase_TEXT='(database: A collection of data related to a particular subject or purpose. Within a database, information about a particular entity, such as an employee or order, is categorized into tables, records, and fields.)';
  2077.             sTemp=L_qudefDatabase_TEXT;
  2078.             break;
  2079.         case 'qudefDataSource':
  2080.             L_qudefDataSource_TEXT='(data source: A stored set of \"source\" information used to connect to a database. A data source can include the name and location of the database server, the name of the database driver, and information that the database needs when you log on.)';
  2081.             sTemp=L_qudefDataSource_TEXT;
  2082.             break;
  2083.         case 'qudefExpression':
  2084.             L_qudefExpression_TEXT='(expression: A combination of operators, field names, functions, literals, and constants that evaluates to a single value. Expressions can specify criteria (such as Order Amount>10000) or perform calculations on field values (such as Price*Quantity).)';
  2085.             sTemp=L_qudefExpression_TEXT;
  2086.             break;
  2087.         case 'qudefField':
  2088.             L_qudefField_TEXT='(field: A category of information, such as last name or order amount, that is stored in a table. When Query displays a result set in its Data pane, a field is represented as a column.)';
  2089.             sTemp=L_qudefField_TEXT;
  2090.             break;
  2091.         case 'qudefInnerJoin':
  2092.             L_qudefInnerJoin_TEXT='(inner join: In Query, default type of join between two tables where only the records that have the same values in the joined fields are selected. The two matching records from each table are combined and displayed as one record in the result set.)';
  2093.             sTemp=L_qudefInnerJoin_TEXT;
  2094.             break;
  2095.         case 'qudefJoinLine':
  2096.             L_qudefJoinLine_TEXT='(join line: In Query, a line that connects fields between two tables and shows how the data is related. The type of join indicates which records are selected for the query\'s result set.)';
  2097.             sTemp=L_qudefJoinLine_TEXT;
  2098.             break;
  2099.         case 'qudefOperator':
  2100.             L_qudefOperator_TEXT='(operator: A sign or symbol that specifies the type of calculation to perform within an expression. There are mathematical, comparison, logical, and reference operators.)';
  2101.             sTemp=L_qudefOperator_TEXT;
  2102.             break;
  2103.         case 'qudefOuterJoin':
  2104.             L_qudefOuterJoin_TEXT='(outer join: In Query, a join where all records from one table are selected, even if there are no matching records in another table. Records that match are combined and shown as one. Records that don\'t have matches in the other table are shown empty.)';
  2105.             sTemp=L_qudefOuterJoin_TEXT;
  2106.             break;
  2107.         case 'qudefRecord':
  2108.             L_qudefRecord_TEXT='(record: A collection of information about a particular person, place, event, or thing. When Query displays a result set in the Data pane, a record is represented as a row.)';
  2109.             sTemp=L_qudefRecord_TEXT;
  2110.             break;
  2111.         case 'qudefResultset':
  2112.             L_qudefResultset_TEXT='(result set: The set of records returned when you run a query. You can see the result set of a query in Query, or you can return a result set to an Excel worksheet for further analysis.)';
  2113.             sTemp=L_qudefResultset_TEXT;
  2114.             break;
  2115.         case 'qudefTable':
  2116.             L_qudefTable_TEXT='(table: A collection of data about a particular subject that is stored in records (rows) and fields (columns).)';
  2117.             sTemp=L_qudefTable_TEXT;
  2118.             break;
  2119.         case 'quRowHeading':
  2120.             L_quRowHeading_TEXT='(row heading: In Query, the numbered gray area to the left of each row. Click a row heading to select an entire row.)';
  2121.             sTemp=L_quRowHeading_TEXT;
  2122.             break;
  2123.         case 'XlCategoryField':
  2124.             L_XlCategoryField_TEXT='(category field: A field that\'s displayed in the category area of the PivotChart report. Items in a category field appear as the labels on the category axis.)';
  2125.             sTemp=L_XlCategoryField_TEXT;
  2126.             break;
  2127.         case 'xlCurrentRegion':
  2128.             L_xlCurrentRegion_TEXT='(current region: The block of filled-in cells that includes the currently selected cell or cells. The region extends in all directions to the first empty row or column.)';
  2129.             sTemp=L_xlCurrentRegion_TEXT;
  2130.             break;
  2131.         case 'XlDataTable':
  2132.             L_XlDataTable_TEXT='(data table: A range of cells that shows the results of substituting different values in one or more formulas. There are two types of data tables: one-input tables and two-input tables.)';
  2133.             sTemp=L_XlDataTable_TEXT;
  2134.             break;
  2135.         case 'xldecIdentifier':
  2136.             L_xldecIdentifier_TEXT='(identifier: A field name used in a Query expression. For example, Order Amount is the identifier (field name) for a field that contains order amounts. You can use an expression (such as Price*Quantity) in place of an identifier.)';
  2137.             sTemp=L_xldecIdentifier_TEXT;
  2138.             break;
  2139.         case 'xldef3DWallsAndFloor':
  2140.             L_xldef3DWallsAndFloor_TEXT='(3-D walls and floor: The areas surrounding many 3-D chart types that give dimension and boundaries to the chart. Two walls and one floor are displayed within the plot area.)';
  2141.             sTemp=L_xldef3DWallsAndFloor_TEXT;
  2142.             break;
  2143.         case 'xldefActivate':
  2144.             L_xldefActivate_TEXT='(activate: To make a chart sheet or worksheet the active, or selected, sheet. The sheet that you activate determines which menu bar and toolbars are displayed. To activate a sheet, click the tab for the sheet in the workbook.)';
  2145.             sTemp=L_xldefActivate_TEXT;
  2146.             break;
  2147.         case 'xldefActiveCell':
  2148.             L_xldefActiveCell_TEXT='(active cell: The selected cell in which data is entered when you begin typing. Only one cell is active at a time. The active cell is bounded by a heavy border.)';
  2149.             sTemp=L_xldefActiveCell_TEXT;
  2150.             break;
  2151.         case 'xldefActiveSheet':
  2152.             L_xldefActiveSheet_TEXT='(active sheet: The sheet that you\'re working on in a workbook. The name on the tab of the active sheet is bold.)';
  2153.             sTemp=L_xldefActiveSheet_TEXT;
  2154.             break;
  2155.         case 'xldefAddin':
  2156.             L_xldefAddin_TEXT='(Excel add-in: Components that can be installed on your computer to add commands and functions to Excel. These add-in programs are specific to Excel. Other add-in programs that are available for Excel or Office are Component Object Model (COM) add-ins.)';
  2157.             sTemp=L_xldefAddin_TEXT;
  2158.             break;
  2159.         case 'xldefAlternateStartupFolder':
  2160.             L_xldefAlternateStartupFolder_TEXT='(alternate startup folder: A folder in addition to the XLStart folder that contains workbooks or other files that you want to be opened automatically when you start Excel and templates that you want to be available when you create new workbooks.)';
  2161.             sTemp=L_xldefAlternateStartupFolder_TEXT;
  2162.             break;
  2163.         case 'xldefArray':
  2164.             L_xldefArray_TEXT='(array: Used to build single formulas that produce multiple results or that operate on a group of arguments that are arranged in rows and columns. An array range shares a common formula; an array constant is a group of constants used as an argument.)';
  2165.             sTemp=L_xldefArray_TEXT;
  2166.             break;
  2167.         case 'xldefAssocPT':
  2168.             L_xldefAssocPT_TEXT='(associated PivotTable report: The PivotTable report that supplies the source data to the PivotChart report. It is created automatically when you create a new PivotChart report. When you change the layout of either report, the other also changes.)';
  2169.             sTemp=L_xldefAssocPT_TEXT;
  2170.             break;
  2171.         case 'XlDefaultWorksheetTemplate':
  2172.             L_XlDefaultWorksheetTemplate_TEXT='(default worksheet template: The Sheet.xlt template that you create to change the default format of new worksheets. Excel uses the template to create a blank worksheet when you add a new worksheet to a workbook.)';
  2173.             sTemp=L_XlDefaultWorksheetTemplate_TEXT;
  2174.             break;
  2175.         case 'xldefAutoformat':
  2176.             L_xldefAutoformat_TEXT='(autoformat: A built-in collection of cell formats (such as font size, patterns, and alignment) that you can apply to a range of data. Excel determines the levels of summary and detail in the selected range and applies the formats accordingly.)';
  2177.             sTemp=L_xldefAutoformat_TEXT;
  2178.             break;
  2179.         case 'xldefAxis':
  2180.             L_xldefAxis_TEXT='(axis: A line bordering the chart plot area used as a frame of reference for measurement. The y axis is usually the vertical axis and contains data. The x-axis is usually the horizontal axis and contains categories.)';
  2181.             sTemp=L_xldefAxis_TEXT;
  2182.             break;
  2183.         case 'xldefCellReference':
  2184.             L_xldefCellReference_TEXT='(cell reference: The set of coordinates that a cell occupies on a worksheet. For example, the reference of the cell that appears at the intersection of column B and row 3 is B3.)';
  2185.             sTemp=L_xldefCellReference_TEXT;
  2186.             break;
  2187.         case 'xldefChartArea':
  2188.             L_xldefChartArea_TEXT='(chart area: The entire chart and all its elements.)';
  2189.             sTemp=L_xldefChartArea_TEXT;
  2190.             break;
  2191.         case 'xldefChartSheet':
  2192.             L_xldefChartSheet_TEXT='(chart sheet: A sheet in a workbook that contains only a chart. A chart sheet is beneficial when you want to view a chart or a PivotChart report separately from worksheet data or a PivotTable report.)';
  2193.             sTemp=L_xldefChartSheet_TEXT;
  2194.             break;
  2195.         case 'xldefComparisonCriteria':
  2196.             L_xldefComparisonCriteria_TEXT='(comparison criteria: A set of search conditions that is used to find data. Comparison criteria can be a series of characters that you want to match, such as \"Northwind Traders,\" or an expression, such as \">300.\")';
  2197.             sTemp=L_xldefComparisonCriteria_TEXT;
  2198.             break;
  2199.         case 'xldefComparisonOperator':
  2200.             L_xldefComparisonOperator_TEXT='(comparison operator: A sign that is used in comparison criteria to compare two values. Operators include: = Equal to, > Greater than, < Less than, >= Greater than or equal to, <= Less than or equal to, and <> Not equal to.)';
  2201.             sTemp=L_xldefComparisonOperator_TEXT;
  2202.             break;
  2203.         case 'xldefConsolidationTable':
  2204.             L_xldefConsolidationTable_TEXT='(consolidation table: The table of combined results that appears in the destination area. Excel creates the consolidation table by applying the summary function that you select to the source area values that you specify.)';
  2205.             sTemp=L_xldefConsolidationTable_TEXT;
  2206.             break;
  2207.         case 'xldefConstraints':
  2208.             L_xldefConstraints_TEXT='(constraints: The limitations placed on a Solver problem. You can apply constraints to adjustable cells, the target cell, or other cells that are directly or indirectly related to the target cell.)';
  2209.             sTemp=L_xldefConstraints_TEXT;
  2210.             break;
  2211.         case 'xldefcopyArea':
  2212.             L_xldefcopyArea_TEXT='(copy area: The cells that you copy when you want to paste data into another location. After you copy cells, a moving border appears around them to indicate that they\'ve been copied.)';
  2213.             sTemp=L_xldefcopyArea_TEXT;
  2214.             break;
  2215.         case 'xldefCubeDef':
  2216.             L_xldefCubeDef_TEXT='(cube definition: Information, stored by the OLAP Cube Wizard in an .oqy file, that defines how to construct an OLAP cube in memory using data retrieved from a relational database.)';
  2217.             sTemp=L_xldefCubeDef_TEXT;
  2218.             break;
  2219.         case 'xldefCustomCalculation':
  2220.             L_xldefCustomCalculation_TEXT='(custom calculation: A method of summarizing values in the data area of a PivotTable report by using the values in other cells in the data area. Use the <b>Show data as</b> list on the PivotTable Field dialog for a data field to create custom calculations.)';
  2221.             sTemp=L_xldefCustomCalculation_TEXT;
  2222.             break;
  2223.         case 'xldefDataForm':
  2224.             L_xldefDataForm_TEXT='(data form: A dialog box that displays one complete record at a time. You can use data forms to add, change, locate, and delete records.)';
  2225.             sTemp=L_xldefDataForm_TEXT;
  2226.             break;
  2227.         case 'xldefDataLabel':
  2228.             L_xldefDataLabel_TEXT='(data label: A label that provides additional information about a data marker, which represents a single data point or value that originates from a worksheet cell.)';
  2229.             sTemp=L_xldefDataLabel_TEXT;
  2230.             break;
  2231.         case 'xldefDataMarker':
  2232.             L_xldefDataMarker_TEXT='(data marker: A bar, area, dot, slice, or other symbol in a chart that represents a single data point or value that originates from a worksheet cell. Related data markers in a chart constitute a data series.)';
  2233.             sTemp=L_xldefDataMarker_TEXT;
  2234.             break;
  2235.         case 'xldefDataPoints':
  2236.             L_xldefDataPoints_TEXT='(data points: Individual values that are plotted in a chart. Related data points make up a data series. Data points are represented by bars, columns, lines, slices, dots, and other shapes. These shapes are called data markers.)';
  2237.             sTemp=L_xldefDataPoints_TEXT;
  2238.             break;
  2239.         case 'xldefDataRegion':
  2240.             L_xldefDataRegion_TEXT='(data region: A range of cells that contains data and that is bounded by empty cells or worksheet borders.)';
  2241.             sTemp=L_xldefDataRegion_TEXT;
  2242.             break;
  2243.         case 'xldefDataSeries':
  2244.             L_xldefDataSeries_TEXT='(data series: Related data points that are plotted in a chart. Each data series in a chart has a unique color or pattern and is represented in the chart legend. You can plot one or more data series in a chart. Pie charts have only one data series.)';
  2245.             sTemp=L_xldefDataSeries_TEXT;
  2246.             break;
  2247.         case 'xldefDataSource':
  2248.             L_xldefDataSource_TEXT='(data source: A stored set of \"source\" information used to connect to a database. A data source can include the name and location of the database server, the name of the database driver, and information that the database needs when you log on.)';
  2249.             sTemp=L_xldefDataSource_TEXT;
  2250.             break;
  2251.         case 'xldefDataTable':
  2252.             L_xldefDataTable_TEXT='(data table: A range of cells that shows the results of substituting different values in one or more formulas. There are two types of data tables: one-input tables and two-input tables.)';
  2253.             sTemp=L_xldefDataTable_TEXT;
  2254.             break;
  2255.         case 'xldefDataTableInCharts':
  2256.             L_xldefDataTableInCharts_TEXT='(data table in charts: A grid that can be added to some charts and contains the numeric data used to create the chart. The data table usually is attached to the category axis of the chart and replaces the tick-mark labels on the category axis.)';
  2257.             sTemp=L_xldefDataTableInCharts_TEXT;
  2258.             break;
  2259.         case 'xldefDataValidation':
  2260.             L_xldefDataValidation_TEXT='(data validation: An Excel feature that you can use to define restrictions on what data can or should be entered in a cell, and to display messages that prompt users for correct entries and notify users about incorrect entries.)';
  2261.             sTemp=L_xldefDataValidation_TEXT;
  2262.             break;
  2263.         case 'xldefDefaultStartupWorkbook':
  2264.             L_xldefDefaultStartupWorkbook_TEXT='(default startup workbook: The new, unsaved workbook that\'s displayed when you start Excel. The default startup workbook is displayed only if you haven\'t included other workbooks in the XLStart folder.)';
  2265.             sTemp=L_xldefDefaultStartupWorkbook_TEXT;
  2266.             break;
  2267.         case 'xldefDependents':
  2268.             L_xldefDependents_TEXT='(dependents: Cells that contain formulas that refer to other cells. For example, if cell D10 contains the formula =B5, cell D10 is a dependent of cell B5.)';
  2269.             sTemp=L_xldefDependents_TEXT;
  2270.             break;
  2271.         case 'xldefDestinationArea':
  2272.             L_xldefDestinationArea_TEXT='(destination area: The range of cells that you select to hold the summarized data in a consolidation. The destination area can be on the same worksheet as the source data or on a different worksheet. A worksheet can contain only one consolidation.)';
  2273.             sTemp=L_xldefDestinationArea_TEXT;
  2274.             break;
  2275.         case 'xldefDetailData':
  2276.             L_xldefDetailData_TEXT='(detail data: For automatic subtotals and worksheet outlines, the subtotal rows or columns that are totaled by summary data. Detail data is typically adjacent to and either above or to the left of the summary data.)';
  2277.             sTemp=L_xldefDetailData_TEXT;
  2278.             break;
  2279.         case 'xldefDropLines':
  2280.             L_xldefDropLines_TEXT='(drop lines: In line and area charts, lines that extend from a data point to the category (x) axis. Useful in area charts to clarify where one data marker ends and the next begins.)';
  2281.             sTemp=L_xldefDropLines_TEXT;
  2282.             break;
  2283.         case 'xldefEmbeddedChart':
  2284.             L_xldefEmbeddedChart_TEXT='(embedded chart: A chart that is placed on a worksheet rather than on a separate chart sheet. Embedded charts are beneficial when you want to view or print a chart or a PivotChart report with its source data or other information in a worksheet.)';
  2285.             sTemp=L_xldefEmbeddedChart_TEXT;
  2286.             break;
  2287.         case 'xldefErrorBars':
  2288.             L_xldefErrorBars_TEXT='(error bars: Usually used in statistical or scientific data, error bars show potential error or degree of uncertainty relative to each data marker in a series.)';
  2289.             sTemp=L_xldefErrorBars_TEXT;
  2290.             break;
  2291.         case 'xldefFieldButton':
  2292.             L_xldefFieldButton_TEXT='(field button: Button that identifies a field in a PivotTable or PivotChart report. You can drag the field buttons to change the layout of the report, or click the arrows next to the buttons to change the level of detail displayed in the report.)';
  2293.             sTemp=L_xldefFieldButton_TEXT;
  2294.             break;
  2295.         case 'XldefFillHandle':
  2296.             L_XldefFillHandle_TEXT='(fill handle: The small black square in the lower-right corner of the selection. When you point to the fill handle, the pointer changes to a black cross.)';
  2297.             sTemp=L_XldefFillHandle_TEXT;
  2298.             break;
  2299.         case 'xldefFilter':
  2300.             L_xldefFilter_TEXT='(filter: To display only the rows in a list that satisfy the conditions you specify. You use the AutoFilter command to display rows that match one or more specific values, calculated values, or conditions.)';
  2301.             sTemp=L_xldefFilter_TEXT;
  2302.             break;
  2303.         case 'xldefFormula':
  2304.             L_xldefFormula_TEXT='(formula: A sequence of values, cell references, names, functions, or operators in a cell that together produce a new value. A formula always begins with an equal sign (=).)';
  2305.             sTemp=L_xldefFormula_TEXT;
  2306.             break;
  2307.         case 'xldefFormulaBar':
  2308.             L_xldefFormulaBar_TEXT='(formula bar: A bar at the top of the Excel window that you use to enter or edit values or formulas in cells or charts. Displays the constant value or formula stored in the active cell.)';
  2309.             sTemp=L_xldefFormulaBar_TEXT;
  2310.             break;
  2311.         case 'xldefGoalSeeking':
  2312.             L_xldefGoalSeeking_TEXT='(goal seek: A method to find a specific value for a cell by adjusting the value of one other cell. When goal seeking, Excel varies the value in a cell that you specify until a formula that\'s dependent on that cell returns the result you want.)';
  2313.             sTemp=L_xldefGoalSeeking_TEXT;
  2314.             break;
  2315.         case 'xldefGridlines':
  2316.             L_xldefGridlines_TEXT='(gridlines in charts: Lines you can add to a chart that make it easier to view and evaluate data. Gridlines extend from the tick marks on an axis across the plot area.)';
  2317.             sTemp=L_xldefGridlines_TEXT;
  2318.             break;
  2319.         case 'xldefGroup':
  2320.             L_xldefGroup_TEXT='(group: In an outline or PivotTable report, one or more detail rows or columns that are adjacent and subordinate to a summary row or column.)';
  2321.             sTemp=L_xldefGroup_TEXT;
  2322.             break;
  2323.         case 'xldefInputCell':
  2324.             L_xldefInputCell_TEXT='(input cell: The cell in which each input value from a data table is substituted. Any cell on a worksheet can be the input cell. Although the input cell does not need to be part of the data table, the formulas in data tables must refer to the input cell.)';
  2325.             sTemp=L_xldefInputCell_TEXT;
  2326.             break;
  2327.         case 'xldefIteration':
  2328.             L_xldefIteration_TEXT='(iteration: Repeated calculation of a worksheet until a specific numeric condition is met.)';
  2329.             sTemp=L_xldefIteration_TEXT;
  2330.             break;
  2331.         case 'xldefLegend':
  2332.             L_xldefLegend_TEXT='(legend: A box that identifies the patterns or colors that are assigned to the data series or categories in a chart.)';
  2333.             sTemp=L_xldefLegend_TEXT;
  2334.             break;
  2335.         case 'xldefLegendKey':
  2336.             L_xldefLegendKey_TEXT='(legend keys: Symbols in legends that show the patterns and colors assigned to the data series (or categories) in a chart. Legend keys appear to the left of legend entries. Formatting a legend key also formats the data marker that\'s associated with it.)';
  2337.             sTemp=L_xldefLegendKey_TEXT;
  2338.             break;
  2339.         case 'xldefList':
  2340.             L_xldefList_TEXT='(list: A series of rows that contains related data or a series of rows that you designate to function as a datasheet by using the <bterm>Create List</bterm> command.)';
  2341.             sTemp=L_xldefList_TEXT;
  2342.             break;
  2343.         case 'xldefMovingAverage':
  2344.             L_xldefMovingAverage_TEXT='(moving average: A sequence of averages computed from parts of a data series. In a chart, a moving average smooths the fluctuations in data, thus showing the pattern or trend more clearly.)';
  2345.             sTemp=L_xldefMovingAverage_TEXT;
  2346.             break;
  2347.         case 'xldefNetscapeNot':
  2348.             L_xldefNetscapeNot_TEXT='(Internet Explorer: A Web browser that interprets HTML files, formats them into Web pages, and displays them to the user. You can download Internet Explorer from the Microsoft Web site at http://www.microsoft.com.)';
  2349.             sTemp=L_xldefNetscapeNot_TEXT;
  2350.             break;
  2351.         case 'xldefNonadjacentSelections':
  2352.             L_xldefNonadjacentSelections_TEXT='(nonadjacent selection: A selection of two or more cells or ranges that don\'t touch each other. When plotting nonadjacent selections in a chart, make sure that the combined selections form a rectangular shape.)';
  2353.             sTemp=L_xldefNonadjacentSelections_TEXT;
  2354.             break;
  2355.         case 'xldefOfflineCubeFile':
  2356.             L_xldefOfflineCubeFile_TEXT='(offline cube file: A file you create on your hard disk or a network share to store OLAP source data for a PivotTable or PivotChart report. Offline cube files allow you to keep working when you are not connected to the OLAP server.)';
  2357.             sTemp=L_xldefOfflineCubeFile_TEXT;
  2358.             break;
  2359.         case 'xldefOLAP':
  2360.             L_xldefOLAP_TEXT='(OLAP: A database technology that has been optimized for querying and reporting, instead of processing transactions. OLAP data is organized hierarchically and stored in cubes instead of tables.)';
  2361.             sTemp=L_xldefOLAP_TEXT;
  2362.             break;
  2363.         case 'xldefOLAPProvider':
  2364.             L_xldefOLAPProvider_TEXT='(OLAP provider: A set of software that provides access to a particular type of OLAP database. This software can include a data source driver and other client software that is necessary to connect to a database.)';
  2365.             sTemp=L_xldefOLAPProvider_TEXT;
  2366.             break;
  2367.         case 'xldefOutline':
  2368.             L_xldefOutline_TEXT='(outline: Worksheet data in which rows or columns of detail data are grouped so that you can create summary reports. The outline can summarize either an entire worksheet or a selected portion of it.)';
  2369.             sTemp=L_xldefOutline_TEXT;
  2370.             break;
  2371.         case 'xldefOutlineSymbols':
  2372.             L_xldefOutlineSymbols_TEXT='(outline symbols: Symbols that you use to change the view of an outlined worksheet. You can show or hide detailed data by pressing the plus sign, minus sign, and the numbers 1, 2, 3, or 4, indicating the outline level.)';
  2373.             sTemp=L_xldefOutlineSymbols_TEXT;
  2374.             break;
  2375.         case 'XldefPassword':
  2376.             L_XldefPassword_TEXT='(password: A way to restrict access to a workbook, worksheet, or part of a worksheet. Excel passwords can be up to 255 letters, numbers, spaces, and symbols. You must type uppercase and lowercase letters correctly when you set and enter passwords.)';
  2377.             sTemp=L_XldefPassword_TEXT;
  2378.             break;
  2379.         case 'xldefPasteArea':
  2380.             L_xldefPasteArea_TEXT='(paste area: The target destination for data that\'s been cut or copied by using the Office Clipboard.)';
  2381.             sTemp=L_xldefPasteArea_TEXT;
  2382.             break;
  2383.         case 'xldefPivotArea':
  2384.             L_xldefPivotArea_TEXT='(pivot area: The worksheet area into which you drag PivotTable or PivotChart fields to change the layout of the report. On a new report, dashed blue outlines indicate the pivot area on the worksheet.)';
  2385.             sTemp=L_xldefPivotArea_TEXT;
  2386.             break;
  2387.         case 'xldefPivotList':
  2388.             L_xldefPivotList_TEXT='(PivotTable list: A Microsoft Office Web Component that allows you to create a structure similar to an Excel PivotTable report. Users can view the PivotTable list in a Web browser and change its layout in a manner similar to an Excel PivotTable report.)';
  2389.             sTemp=L_xldefPivotList_TEXT;
  2390.             break;
  2391.         case 'xldefPivotTable':
  2392.             L_xldefPivotTable_TEXT='(PivotTable report: An interactive, crosstabulated Excel report that summarizes and analyzes data, such as database records, from various sources, including ones that are external to Excel.)';
  2393.             sTemp=L_xldefPivotTable_TEXT;
  2394.             break;
  2395.         case 'xldefPivotTableColumnField':
  2396.             L_xldefPivotTableColumnField_TEXT='(column field: A field that\'s assigned a column orientation in a PivotTable report. Items associated with a column field are displayed as column labels.)';
  2397.             sTemp=L_xldefPivotTableColumnField_TEXT;
  2398.             break;
  2399.         case 'xldefPivotTableData':
  2400.             L_xldefPivotTableData_TEXT='(PivotTable data: In a PivotTable report, the summarized data that\'s calculated from the data fields of a source list or table.)';
  2401.             sTemp=L_xldefPivotTableData_TEXT;
  2402.             break;
  2403.         case 'xldefPivotTableDataArea':
  2404.             L_xldefPivotTableDataArea_TEXT='(data area: The part of a PivotTable report that contains summary data. Values in each cell of the data area represent a summary of data from the source records or rows.)';
  2405.             sTemp=L_xldefPivotTableDataArea_TEXT;
  2406.             break;
  2407.         case 'xldefPivotTableDataField':
  2408.             L_xldefPivotTableDataField_TEXT='(data field: A field from a source list, table, or database that contains data that is summarized in a PivotTable report or PivotChart report. A data field usually contains numeric data, such as statistics or sales amounts.)';
  2409.             sTemp=L_xldefPivotTableDataField_TEXT;
  2410.             break;
  2411.         case 'xldefPivotTableField':
  2412.             L_xldefPivotTableField_TEXT='(field: In a PivotTable or PivotChart report, a category of data that\'s derived from a field in the source data. PivotTable reports have row, column, page, and data fields. PivotChart reports have series, category, page, and data fields.)';
  2413.             sTemp=L_xldefPivotTableField_TEXT;
  2414.             break;
  2415.         case 'xldefPivotTableGrandTotals':
  2416.             L_xldefPivotTableGrandTotals_TEXT='(PivotTable grand totals: Total values for all cells in a row or all cells in a column of a PivotTable report. Values in a grand total row or column are calculated by using the same summary function used in the data area of the PivotTable report.)';
  2417.             sTemp=L_xldefPivotTableGrandTotals_TEXT;
  2418.             break;
  2419.         case 'xldefPivotTableItem':
  2420.             L_xldefPivotTableItem_TEXT='(item: A subcategory of a field in PivotTable and PivotChart reports. For instance, the field \"Month\" could have items such as \"January,\" \"February,\" and so on.)';
  2421.             sTemp=L_xldefPivotTableItem_TEXT;
  2422.             break;
  2423.         case 'xldefPivotTablePageField':
  2424.             L_xldefPivotTablePageField_TEXT='(page field: A field that\'s assigned to a page orientation in a PivotTable or PivotChart report. You can either display a summary of all items in a page field, or display one item at a time, which filters out the data for all other items.)';
  2425.             sTemp=L_xldefPivotTablePageField_TEXT;
  2426.             break;
  2427.         case 'xldefPivotTableRowField':
  2428.             L_xldefPivotTableRowField_TEXT='(row field: A field that\'s assigned a row orientation in a PivotTable report. Items associated with a row field are displayed as row labels.)';
  2429.             sTemp=L_xldefPivotTableRowField_TEXT;
  2430.             break;
  2431.         case 'xldefPivotTableSubtotal':
  2432.             L_xldefPivotTableSubtotal_TEXT='(PivotTable subtotal: A row or column that uses a summary function to display the total of detail items in a PivotTable field.)';
  2433.             sTemp=L_xldefPivotTableSubtotal_TEXT;
  2434.             break;
  2435.         case 'xldefPlotArea':
  2436.             L_xldefPlotArea_TEXT='(plot area: In a 2-D chart, the area bounded by the axes, including all data series. In a 3-D chart, the area bounded by the axes, including the data series, category names, tick-mark labels, and axis titles.)';
  2437.             sTemp=L_xldefPlotArea_TEXT;
  2438.             break;
  2439.         case 'xldefPrecedents':
  2440.             L_xldefPrecedents_TEXT='(precedents: Cells that are referred to by a formula in another cell. For example, if cell D10 contains the formula =B5, cell B5 is a precedent to cell D10.)';
  2441.             sTemp=L_xldefPrecedents_TEXT;
  2442.             break;
  2443.         case 'xldefPrintArea':
  2444.             L_xldefPrintArea_TEXT='(print area: One or more ranges of cells that you designate to print when you don\'t want to print the entire worksheet. If a worksheet includes a print area, only the print area is printed.)';
  2445.             sTemp=L_xldefPrintArea_TEXT;
  2446.             break;
  2447.         case 'xldefProtect':
  2448.             L_xldefProtect_TEXT='(protect: To make settings for a worksheet or workbook that prevent users from viewing or gaining access to the specified worksheet or workbook elements.)';
  2449.             sTemp=L_xldefProtect_TEXT;
  2450.             break;
  2451.         case 'xldefQuery':
  2452.             L_xldefQuery_TEXT='(query: In Query or Access, a means of finding the records that answer a particular question you ask about the data stored in a database.)';
  2453.             sTemp=L_xldefQuery_TEXT;
  2454.             break;
  2455.         case 'xldefRange':
  2456.             L_xldefRange_TEXT='(range: Two or more cells on a sheet. The cells in a range can be adjacent or nonadjacent.)';
  2457.             sTemp=L_xldefRange_TEXT;
  2458.             break;
  2459.         case 'xldefRegressionAnalysis':
  2460.             L_xldefRegressionAnalysis_TEXT='(regression analysis: A form of statistical analysis used for forecasting. Regression analysis estimates the relationship between variables so that a given variable can be predicted from one or more other variables.)';
  2461.             sTemp=L_xldefRegressionAnalysis_TEXT;
  2462.             break;
  2463.         case 'xldefRelativeReference':
  2464.             L_xldefRelativeReference_TEXT='(relative reference: In a formula, the address of a cell based on the relative position of the cell that contains the formula and the cell referred to. If you copy the formula, the reference automatically adjusts. A relative reference takes the form A1.)';
  2465.             sTemp=L_xldefRelativeReference_TEXT;
  2466.             break;
  2467.         case 'xldefRsquaredValue':
  2468.             L_xldefRsquaredValue_TEXT='(R-squared value: A number from 0 to 1 that reveals how closely the estimated values for the trendline correspond to your actual data. A trendline is most reliable when its R-squared value is at or near 1. Also known as the coefficient of determination.)';
  2469.             sTemp=L_xldefRsquaredValue_TEXT;
  2470.             break;
  2471.         case 'xldefScenario':
  2472.             L_xldefScenario_TEXT='(scenario: A named set of input values that you can substitute in a worksheet model.)';
  2473.             sTemp=L_xldefScenario_TEXT;
  2474.             break;
  2475.         case 'xldefScrollLock':
  2476.             L_xldefScrollLock_TEXT='(scroll lock: With scroll lock turned on, the arrow keys scroll the active sheet rather than make a different cell active. To turn scroll lock off or on, press the SCROLL LOCK key.)';
  2477.             sTemp=L_xldefScrollLock_TEXT;
  2478.             break;
  2479.         case 'xldefSection':
  2480.             L_xldefSection_TEXT='(section: Any combination of a worksheet, view, and scenario that you choose when you create a report. A report can contain several sections.)';
  2481.             sTemp=L_xldefSection_TEXT;
  2482.             break;
  2483.         case 'xldefSelect':
  2484.             L_xldefSelect_TEXT='(select: To highlight a cell or range of cells on a worksheet. The selected cells will be affected by the next command or action.)';
  2485.             sTemp=L_xldefSelect_TEXT;
  2486.             break;
  2487.         case 'xldefSeriesLines':
  2488.             L_xldefSeriesLines_TEXT='(series lines: In 2-D stacked bar and column charts, lines that connect the data markers in each data series that are used to emphasize the difference in measurement between each series.)';
  2489.             sTemp=L_xldefSeriesLines_TEXT;
  2490.             break;
  2491.         case 'xldefSourceAreas':
  2492.             L_xldefSourceAreas_TEXT='(source areas: The cell ranges that you consolidate in the destination area you specify. Source areas can be on any worksheet in a workbook, in other open or closed workbooks, or on Lotus 1-2-3 worksheets.)';
  2493.             sTemp=L_xldefSourceAreas_TEXT;
  2494.             break;
  2495.         case 'xldefSourceDataForPivotTables':
  2496.             L_xldefSourceDataForPivotTables_TEXT='(source data: The list or table that\'s used to create a PivotTable or PivotChart report. Source data can be taken from an Excel list or range, an external database or cube, or another PivotTable report.)';
  2497.             sTemp=L_xldefSourceDataForPivotTables_TEXT;
  2498.             break;
  2499.         case 'xldefStandardFont':
  2500.             L_xldefStandardFont_TEXT='(standard font: The default text font for worksheets. The standard font determines the default font for the Normal cell style.)';
  2501.             sTemp=L_xldefStandardFont_TEXT;
  2502.             break;
  2503.         case 'xldefSummaryData':
  2504.             L_xldefSummaryData_TEXT='(summary data: For automatic subtotals and worksheet outlines, all rows or columns that summarize detail data. Summary data usually is adjacent to and below the detail data.)';
  2505.             sTemp=L_xldefSummaryData_TEXT;
  2506.             break;
  2507.         case 'xldefSummaryFunction':
  2508.             L_xldefSummaryFunction_TEXT='(summary function: A type of calculation that combines source data in a PivotTable report or a consolidation table, or when you are inserting automatic subtotals in a list or database. Examples of summary functions include Sum, Count, and Average.)';
  2509.             sTemp=L_xldefSummaryFunction_TEXT;
  2510.             break;
  2511.         case 'xldefTemplate':
  2512.             L_xldefTemplate_TEXT='(template: A workbook that you create and use as the basis for other similar workbooks. You can create templates for workbooks and worksheets. The default template for workbooks is called Book.xlt. The default template for worksheets is called Sheet.xlt.)';
  2513.             sTemp=L_xldefTemplate_TEXT;
  2514.             break;
  2515.         case 'xldefTextBox':
  2516.             L_xldefTextBox_TEXT='(text box: A rectangular object on a worksheet or chart, in which you can type text.)';
  2517.             sTemp=L_xldefTextBox_TEXT;
  2518.             break;
  2519.         case 'xldefTickMarksAndTickMarkLabels':
  2520.             L_xldefTickMarksAndTickMarkLabels_TEXT='(tick marks and tick-mark labels: Tick marks are small lines of measurement, similar to divisions on a ruler, that intersect an axis. Tick-mark labels identify the categories, values, or series in the chart.)';
  2521.             sTemp=L_xldefTickMarksAndTickMarkLabels_TEXT;
  2522.             break;
  2523.         case 'xldefTitlesInCharts':
  2524.             L_xldefTitlesInCharts_TEXT='(titles in charts: Descriptive text that is automatically aligned to an axis or centered at the top of a chart.)';
  2525.             sTemp=L_xldefTitlesInCharts_TEXT;
  2526.             break;
  2527.         case 'xldefTrendline':
  2528.             L_xldefTrendline_TEXT='(trendline: A graphic representation of trends in data series, such as a line sloping upward to represent increased sales over a period of months. Trendlines are used for the study of problems of prediction, also called regression analysis.)';
  2529.             sTemp=L_xldefTrendline_TEXT;
  2530.             break;
  2531.         case 'xldefTrendlineLabel':
  2532.             L_xldefTrendlineLabel_TEXT='(trendline label: Optional text for a trendline, including either the regression equation or the R-squared value, or both. A trendline label can be formatted and moved; it cannot be sized.)';
  2533.             sTemp=L_xldefTrendlineLabel_TEXT;
  2534.             break;
  2535.         case 'xldefUpdownBars':
  2536.             L_xldefUpdownBars_TEXT='(up-down bars: In line charts with multiple data series, bars that indicate the difference between data points in the first and last series.)';
  2537.             sTemp=L_xldefUpdownBars_TEXT;
  2538.             break;
  2539.         case 'xldefView':
  2540.             L_xldefView_TEXT='(view: A set of display and print settings that you can name and apply to a workbook. You can create more than one view of the same workbook without saving separate copies of the workbook.)';
  2541.             sTemp=L_xldefView_TEXT;
  2542.             break;
  2543.         case 'xldefVisualPrint':
  2544.             L_xldefVisualPrint_TEXT='(page break preview: Worksheet view that displays the areas to be printed and the locations of page breaks. The area to be printed is displayed in white, automatic page breaks appear as dashed lines, and manual page breaks appear as solid lines.)';
  2545.             sTemp=L_xldefVisualPrint_TEXT;
  2546.             break;
  2547.         case 'xldefWorksheet':
  2548.             L_xldefWorksheet_TEXT='(worksheet: The primary document that you use in Excel to store and work with data. Also called a spreadsheet. A worksheet consists of cells that are organized into columns and rows; a worksheet is always stored in a workbook.)';
  2549.             sTemp=L_xldefWorksheet_TEXT;
  2550.             break;
  2551.         case 'xldefXLControl':
  2552.             L_xldefXLControl_TEXT='(Microsoft Excel control: A native Excel control other than an ActiveX control.)';
  2553.             sTemp=L_xldefXLControl_TEXT;
  2554.             break;
  2555.         case 'xlhowExternalData':
  2556.             L_xlhowExternalData_TEXT='(external data: Data that is stored outside of Excel. Examples include databases created in Access, dBASE, SQL Server, or on a Web server.)';
  2557.             sTemp=L_xlhowExternalData_TEXT;
  2558.             break;
  2559.         case 'xlinsertrow':
  2560.             L_xlinsertrow_TEXT='(Insert row: In a list, a special row that facilitates data entry. The Insert row is indicated by an asterisk.)';
  2561.             sTemp=L_xlinsertrow_TEXT;
  2562.             break;
  2563.         case 'XlItemProperties':
  2564.             L_XlItemProperties_TEXT='(property fields: Independent attributes associated with items, or members, in an OLAP cube. For example, if city items have size and population properties stored in the server cube, a PivotTable report can display the size and population of each city.)';
  2565.             sTemp=L_XlItemProperties_TEXT;
  2566.             break;
  2567.         case 'xlmappedrange':
  2568.             L_xlmappedrange_TEXT='(mapped range: A range in an XML list that has been linked to an element in an XML map.)';
  2569.             sTemp=L_xlmappedrange_TEXT;
  2570.             break;
  2571.         case 'XlNameBox':
  2572.             L_XlNameBox_TEXT='(Name box: Box at left end of the formula bar that identifies the selected cell, chart item, or drawing object. To name a cell or range, type the name in the Name box and press ENTER. To move to and select a named cell, click its name in the Name box.)';
  2573.             sTemp=L_XlNameBox_TEXT;
  2574.             break;
  2575.         case 'XlObjectlink':
  2576.             L_XlObjectlink_TEXT='(ObjectLink: An OLE data format that describes a linked object, identifying the class, document name, and name of an object. Each of these data items is a null-terminated string.)';
  2577.             sTemp=L_XlObjectlink_TEXT;
  2578.             break;
  2579.         case 'XlOwnerlink':
  2580.             L_XlOwnerlink_TEXT='(OwnerLink: An OLE data format that describes an embedded object, identifying the class, document name, and name of an object. Each of these data items is a null-terminated string.)';
  2581.             sTemp=L_XlOwnerlink_TEXT;
  2582.             break;
  2583.         case 'XlSeriesField':
  2584.             L_XlSeriesField_TEXT='(series field: A field that\'s displayed in the series area of a PivotChart report. Items in a series field are listed in the legend and provide the names of the individual data series.)';
  2585.             sTemp=L_XlSeriesField_TEXT;
  2586.             break;
  2587.         case 'xlsinglemappedcell':
  2588.             L_xlsinglemappedcell_TEXT='(single-mapped cell: A cell that has been linked to a non-repeating element in an XML map.)';
  2589.             sTemp=L_xlsinglemappedcell_TEXT;
  2590.             break;
  2591.         case 'xltotalrow':
  2592.             L_xltotalrow_TEXT='(total row: A special row in a list that provides a selection of aggregate functions useful for working with numerical data.)';
  2593.             sTemp=L_xltotalrow_TEXT;
  2594.             break;
  2595.         case 'XlVisualBasicHelp':
  2596.             L_XlVisualBasicHelp_TEXT='(Microsoft Visual Basic Help: To get help for Visual Basic in Excel, point to <b>Macro </b>on the <b>Tools</b>menu, and then click <b>Visual Basic Editor</b>. On the Help menu, click <b>Microsoft Visual Basic Help</b>.)';
  2597.             sTemp=L_XlVisualBasicHelp_TEXT;
  2598.             break;
  2599.  
  2600.         // Office
  2601.  
  2602.         case 'acdefbidiAlefHamza':
  2603.             L_acdefbidiAlefHamza_TEXT='(Alef Hamzas: A single Arabic character that represents the two-character combination Alef plus Hamza.)';
  2604.             sTemp=L_acdefbidiAlefHamza_TEXT;
  2605.             break;
  2606.         case 'acdefbidiBidirectional':
  2607.             L_acdefbidiBidirectional_TEXT='(bidirectional: Describes an environment in which attributes of right-to-left and left-to-right behavior are used together, such as Arabic and English text that appear in the same sentence.)';
  2608.             sTemp=L_acdefbidiBidirectional_TEXT;
  2609.             break;
  2610.         case 'acdefbidiContext':
  2611.             L_acdefbidiContext_TEXT='(Context: A reading order and alignment setting that is commonly used in controls that display text. When you select the Context setting, the reading order is determined by the first strong character (not a numeral or special character) that you type.)';
  2612.             sTemp=L_acdefbidiContext_TEXT;
  2613.             break;
  2614.         case 'acdefbidiControlChars':
  2615.             L_acdefbidiControlChars_TEXT='(control characters: Characters that are inserted in right-to-left and mixed text to specify the formatting of text when the inherent directionality of the text is insufficient to display expected results.)';
  2616.             sTemp=L_acdefbidiControlChars_TEXT;
  2617.             break;
  2618.         case 'acdefbidiDiacritics':
  2619.             L_acdefbidiDiacritics_TEXT='(diacritics: Markings that are printed above, below, or next to a character that indicate how to pronounce it.)';
  2620.             sTemp=L_acdefbidiDiacritics_TEXT;
  2621.             break;
  2622.         case 'acdefbidiDirection':
  2623.             L_acdefbidiDirection_TEXT='(direction: Specifies the reading order, alignment, and/or visual appearance of right-to-left text and documents, regardless of the keyboard language. Direction also describes how the user interface, controls, and other screen objects are oriented.)';
  2624.             sTemp=L_acdefbidiDirection_TEXT;
  2625.             break;
  2626.         case 'acdefbidiEnabledLanguage':
  2627.             L_acdefbidiEnabledLanguage_TEXT='(enabled languages: Languages that can be added for text editing in Microsoft Office programs. These languages are in addition to the installed language version of the product, and provide additional features to work in a mixed-language environment.)';
  2628.             sTemp=L_acdefbidiEnabledLanguage_TEXT;
  2629.             break;
  2630.         case 'acdefbidiGeneral':
  2631.             L_acdefbidiGeneral_TEXT='(General alignment: A format that normally left aligns text and right aligns numbers. When right-to-left features are active, General alignment is extended to include Text mode (always available) and Interface mode (sometimes available).)';
  2632.             sTemp=L_acdefbidiGeneral_TEXT;
  2633.             break;
  2634.         case 'acdefbidiGregorian':
  2635.             L_acdefbidiGregorian_TEXT='(Gregorian calendar: The calendar in general use in Western countries. It was introduced in 1582 A.D. as a revision to the Julian calendar.)';
  2636.             sTemp=L_acdefbidiGregorian_TEXT;
  2637.             break;
  2638.         case 'acdefbidiHijri':
  2639.             L_acdefbidiHijri_TEXT='(Hijri calendar: The lunar calendar that is used in Islamic regions.)';
  2640.             sTemp=L_acdefbidiHijri_TEXT;
  2641.             break;
  2642.         case 'acdefbidiHindi':
  2643.             L_acdefbidiHindi_TEXT='(Hindi numerals: A numeral set that is used in several Arabic regions. Also referred to as Indic numerals.)';
  2644.             sTemp=L_acdefbidiHindi_TEXT;
  2645.             break;
  2646.         case 'acdefbidiKashida':
  2647.             L_acdefbidiKashida_TEXT='(kashidas: Special characters used to extend the joiner between two Arabic characters. Used to improve the appearance of justified text by visually lengthening words rather than increasing the spacing between words. Can also function like a hyphen.)';
  2648.             sTemp=L_acdefbidiKashida_TEXT;
  2649.             break;
  2650.         case 'acdefbidiKeyboardLanguage':
  2651.             L_acdefbidiKeyboardLanguage_TEXT='(keyboard language: The language selected for entering text.)';
  2652.             sTemp=L_acdefbidiKeyboardLanguage_TEXT;
  2653.             break;
  2654.         case 'acdefbidiLeftToRight':
  2655.             L_acdefbidiLeftToRight_TEXT='(left-to-right: Refers to keyboard settings, document views, user interface objects, and the direction in which text is displayed. English and most other European languages are left-to-right languages.)';
  2656.             sTemp=L_acdefbidiLeftToRight_TEXT;
  2657.             break;
  2658.         case 'acdefbidiLogical':
  2659.             L_acdefbidiLogical_TEXT='(logical: Used to describe insertion point movement and text selection when working with bidirectional text. Movement progresses within bidirectional text according to the direction of the language encountered.)';
  2660.             sTemp=L_acdefbidiLogical_TEXT;
  2661.             break;
  2662.         case 'acdefbidiNeutrals':
  2663.             L_acdefbidiNeutrals_TEXT='(neutral characters: Characters that do not have strong right-to-left or left-to-right language attributes. Numerals are an example of neutral characters.)';
  2664.             sTemp=L_acdefbidiNeutrals_TEXT;
  2665.             break;
  2666.         case 'acdefbidiReadingOrder':
  2667.             L_acdefbidiReadingOrder_TEXT='(reading order: The visual order in which characters, words, and groups of words are displayed. English and most other European languages are displayed in left-to-right order and Hebrew, Arabic, Farsi, and Urdu are displayed in right-to-left order.)';
  2668.             sTemp=L_acdefbidiReadingOrder_TEXT;
  2669.             break;
  2670.         case 'defNavigationMode':
  2671.             L_defNavigationMode_TEXT='(Navigation mode: The mode in Microsoft Access in which an entire field is selected and the insertion point is not visible. In Navigation mode, you can move between fields by using the arrow keys.)';
  2672.             sTemp=L_defNavigationMode_TEXT;
  2673.             break;
  2674.         case 'IDH_ofdefActiveXAddin':
  2675.             L_IDH_ofdefActiveXAddin_TEXT='(COM add-in: A supplemental program that extends the capabilities of a Microsoft Office program by adding custom commands and specialized features. COM add-ins can run in one or more Office programs. COM add-ins use the file name extension .dll or .exe.)';
  2676.             sTemp=L_IDH_ofdefActiveXAddin_TEXT;
  2677.             break;
  2678.         case 'IDH_ofdefApplicationNote':
  2679.             L_IDH_ofdefApplicationNote_TEXT='(Application Note: A technical article, written and distributed by Microsoft, that provides additional information about a Microsoft product or a fix for a known issue. May include a disk that contains new software, documentation, or sample files.)';
  2680.             sTemp=L_IDH_ofdefApplicationNote_TEXT;
  2681.             break;
  2682.         case 'IDH_ofdefAutoshapes':
  2683.             L_IDH_ofdefAutoshapes_TEXT='(AutoShapes: A group of ready-made shapes that includes basic shapes, such as rectangles and circles, plus a variety of lines and connectors, block arrows, flowchart symbols, stars and banners, and callouts.)';
  2684.             sTemp=L_IDH_ofdefAutoshapes_TEXT;
  2685.             break;
  2686.         case 'IDH_ofdefBrowser':
  2687.             L_IDH_ofdefBrowser_TEXT='(browser: Software that interprets HTML files, formats them into Web pages, and displays them. A Web browser, such as Microsoft Internet Explorer, can follow hyperlinks, transfer files, and play sound or video files that are embedded in Web pages.)';
  2688.             sTemp=L_IDH_ofdefBrowser_TEXT;
  2689.             break;
  2690.         case 'IDH_ofdefCache':
  2691.             L_IDH_ofdefCache_TEXT='(cache: A special memory subsystem in which frequently used data values, such as files that are made available for use offline, are duplicated for quick access. Changes made to the cached copy of a file are not reflected in the source copy of the file.)';
  2692.             sTemp=L_IDH_ofdefCache_TEXT;
  2693.             break;
  2694.         case 'IDH_ofdefCascadingStyleSheets':
  2695.             L_IDH_ofdefCascadingStyleSheets_TEXT='(cascading style sheets (CSS): Declarations, either embedded in a Web page or stored in a separate .css file that is linked to a Web page, that specify the appearance of particular HTML elements.)';
  2696.             sTemp=L_IDH_ofdefCascadingStyleSheets_TEXT;
  2697.             break;
  2698.         case 'IDH_ofdefCondition':
  2699.             L_IDH_ofdefCondition_TEXT='(condition: Part of the criteria that a field must meet for searching or filtering. Some conditions must be used with a value; for example, the field Author with the condition <b>equals</b> with the value Jane.)';
  2700.             sTemp=L_IDH_ofdefCondition_TEXT;
  2701.             break;
  2702.         case 'IDH_ofdefDataAccessPage':
  2703.             L_IDH_ofdefDataAccessPage_TEXT='(data access page: A Web page, published from Access, that has a connection to a database. In a data access page, you can view, add to, edit, and manipulate the data stored in the database. A page can also include data from other sources, such as Excel.)';
  2704.             sTemp=L_IDH_ofdefDataAccessPage_TEXT;
  2705.             break;
  2706.         case 'IDH_ofdefDigitalCertificate':
  2707.             L_IDH_ofdefDigitalCertificate_TEXT='(digital certificate: Attachment for a file, macro project, or e-mail message that vouches for authenticity, provides secure encryption, or supplies a verifiable signature. To digitally sign macro projects, you must install a digital certification.)';
  2708.             sTemp=L_IDH_ofdefDigitalCertificate_TEXT;
  2709.             break;
  2710.         case 'IDH_ofdefDigitalSignature':
  2711.             L_IDH_ofdefDigitalSignature_TEXT='(digital signature: An electronic, encryption-based, secure stamp of authentication on a macro or document. This signature confirms that the macro or document originated from the signer and has not been altered.)';
  2712.             sTemp=L_IDH_ofdefDigitalSignature_TEXT;
  2713.             break;
  2714.         case 'IDH_ofdefDirectoryServer':
  2715.             L_IDH_ofdefDirectoryServer_TEXT='(directory server: Also called an Internet Locator Service (ILS) server. A computer that lists the names and e-mail addresses of people who are running NetMeeting and who are logged on to the server. This information is used to connect to their computers.)';
  2716.             sTemp=L_IDH_ofdefDirectoryServer_TEXT;
  2717.             break;
  2718.         case 'IDH_ofdefDynamicHTML':
  2719.             L_IDH_ofdefDynamicHTML_TEXT='(DHTML: An extension of Hypertext Markup Language (HTML) that adds multimedia, database access, and an object model that programs can use to change styles and attributes of page elements (objects) and to replace existing elements (objects) with new ones.)';
  2720.             sTemp=L_IDH_ofdefDynamicHTML_TEXT;
  2721.             break;
  2722.         case 'IDH_ofdefEncoding':
  2723.             L_IDH_ofdefEncoding_TEXT='(encoding: The byte (or sequence of bytes) representing each character in an HTML or plain text file. Unicode encoding supports all characters in all languages and is readable in Microsoft Internet Explorer 4.0 or later and Netscape Navigator 4.0 or later.)';
  2724.             sTemp=L_IDH_ofdefEncoding_TEXT;
  2725.             break;
  2726.         case 'IDH_ofdefExpression':
  2727.             L_IDH_ofdefExpression_TEXT='(expression: Any combination of mathematical or logical operators, constants, functions, and names of fields, controls, and properties that evaluates to a single value. Expressions can perform calculations, manipulate characters, or test data.)';
  2728.             sTemp=L_IDH_ofdefExpression_TEXT;
  2729.             break;
  2730.         case 'IDH_ofdefFileServer':
  2731.             L_IDH_ofdefFileServer_TEXT='(file server: A file-storage device on a local area network that is accessible to users on the network. A file server not only stores files but manages them and maintains order as network users request files and make changes to them.)';
  2732.             sTemp=L_IDH_ofdefFileServer_TEXT;
  2733.             break;
  2734.         case 'IDH_ofdefFixedFileLocation':
  2735.             L_IDH_ofdefFixedFileLocation_TEXT='(fixed file location: The full or absolute address of a file. For example, www.microsoft.com/location/sublocation/filename.htm. By contrast, a relative file location is an address that\'s relative to the active document or a hyperlink base.)';
  2736.             sTemp=L_IDH_ofdefFixedFileLocation_TEXT;
  2737.             break;
  2738.         case 'IDH_ofdefGlobalTextDirection':
  2739.             L_IDH_ofdefGlobalTextDirection_TEXT='(Global text direction: Defines the flow of text in text entry boxes and edit controls. You can choose a left-to-right or right-to-left direction, or base the direction on the context of the first strong character that is detected.)';
  2740.             sTemp=L_IDH_ofdefGlobalTextDirection_TEXT;
  2741.             break;
  2742.         case 'IDH_ofdefGraphicsInterchangeFormatGIF':
  2743.             L_IDH_ofdefGraphicsInterchangeFormatGIF_TEXT='(GIF: A graphics file format (.gif extension in Windows) used to display indexed-color graphics on the World Wide Web. It supports up to 256 colors and uses lossless compression, meaning that no image data is lost when the file is compressed.)';
  2744.             sTemp=L_IDH_ofdefGraphicsInterchangeFormatGIF_TEXT;
  2745.             break;
  2746.         case 'IDH_ofdefHTMLExtensions':
  2747.             L_IDH_ofdefHTMLExtensions_TEXT='(HTML extensions: A feature or setting that is an extension to the formal HTML specification. Extensions may not be supported by all Web browsers, but they may be used widely by Web authors. An example of an extension is marquee scrolling text.)';
  2748.             sTemp=L_IDH_ofdefHTMLExtensions_TEXT;
  2749.             break;
  2750.         case 'IDH_ofdefIndexingTasks':
  2751.             L_IDH_ofdefIndexingTasks_TEXT='(indexing tasks: An action that Find Fast performs on an index, such as creating an index, or deleting or updating an existing index.)';
  2752.             sTemp=L_IDH_ofdefIndexingTasks_TEXT;
  2753.             break;
  2754.         case 'IDH_ofdefJavaApplet':
  2755.             L_IDH_ofdefJavaApplet_TEXT='(Java applet: A small software program written in the Java language, a programming language that is used primarily on the World Wide Web. A Java applet is located within an HTML document and can be used to add to animation, music, page updates, and so on.)';
  2756.             sTemp=L_IDH_ofdefJavaApplet_TEXT;
  2757.             break;
  2758.         case 'IDH_ofdefJPEG':
  2759.             L_IDH_ofdefJPEG_TEXT='(JPEG: A graphics file format (.jpg extension in Microsoft Windows) supported by many Web browsers that was developed for compressing and storing photographic images. It\'s best used for graphics with many colors, such as scanned photos.)';
  2760.             sTemp=L_IDH_ofdefJPEG_TEXT;
  2761.             break;
  2762.         case 'IDH_ofdefKeywords':
  2763.             L_IDH_ofdefKeywords_TEXT='(keyword: A word or phrase that identifies important topics in a workbook, presentation, or other Microsoft Office document. You can use keywords to index files you created in Microsoft Excel, Word, PowerPoint, and Outlook.)';
  2764.             sTemp=L_IDH_ofdefKeywords_TEXT;
  2765.             break;
  2766.         case 'IDH_ofdefLanguageFolder':
  2767.             L_IDH_ofdefLanguageFolder_TEXT='(language folder: The folder in which various translated files are stored. Each language has a different subfolder that corresponds to its locale identification number (LCID). For example, in a U.S. English installation, the LCID is 1033.)';
  2768.             sTemp=L_IDH_ofdefLanguageFolder_TEXT;
  2769.             break;
  2770.         case 'IDH_ofdefMacroProject':
  2771.             L_IDH_ofdefMacroProject_TEXT='(macro project: A collection of components, including forms, code, and class modules, that make up a macro. Macro projects created in Microsoft Visual Basic for Applications can be included in add-ins and in most Microsoft Office programs.)';
  2772.             sTemp=L_IDH_ofdefMacroProject_TEXT;
  2773.             break;
  2774.         case 'IDH_ofdefMicrosoftDownloadService':
  2775.             L_IDH_ofdefMicrosoftDownloadService_TEXT='(MSDL: A standard bulletin board system. It contains the Microsoft Software Library (MSL), technical articles, device drivers, Help files, and other support files you can download from Microsoft.)';
  2776.             sTemp=L_IDH_ofdefMicrosoftDownloadService_TEXT;
  2777.             break;
  2778.         case 'IDH_ofdefMicrosoftFrontPage':
  2779.             L_IDH_ofdefMicrosoftFrontPage_TEXT='(Microsoft FrontPage: A program you can use to create and manage Internet and intranet sites without programming. Available with Microsoft Office or as a stand-alone product.)';
  2780.             sTemp=L_IDH_ofdefMicrosoftFrontPage_TEXT;
  2781.             break;
  2782.         case 'IDH_ofdefMicrosoftKnowledgeBase':
  2783.             L_IDH_ofdefMicrosoftKnowledgeBase_TEXT='(Microsoft Knowledge Base (KB): The primary source of product information for Microsoft support engineers and customers. A complete collection of articles containing detailed how-to information, answers to technical-support questions, and known issues.)';
  2784.             sTemp=L_IDH_ofdefMicrosoftKnowledgeBase_TEXT;
  2785.             break;
  2786.         case 'IDH_ofdefMicrosoftOfficeServerExtensionsOSE':
  2787.             L_IDH_ofdefMicrosoftOfficeServerExtensionsOSE_TEXT='(Microsoft Office Server Extensions: Software that enhances the functionality of Microsoft Office 2002 and your Web browser by extending the functionality of a Web server to provide publishing, collaboration, and document management capabilities.)';
  2788.             sTemp=L_IDH_ofdefMicrosoftOfficeServerExtensionsOSE_TEXT;
  2789.             break;
  2790.         case 'IDH_ofdefMicrosoftSoftwareLibrary':
  2791.             L_IDH_ofdefMicrosoftSoftwareLibrary_TEXT='(MSL: A collection of free binary (nontext) files for all Microsoft products that is located on the Internet. The MSL contains device drivers, utilities, Help files, and technical articles.)';
  2792.             sTemp=L_IDH_ofdefMicrosoftSoftwareLibrary_TEXT;
  2793.             break;
  2794.         case 'IDH_ofdefMultipurposeInternetMailExtensionsMIME':
  2795.             L_IDH_ofdefMultipurposeInternetMailExtensionsMIME_TEXT='(MIME: A list of standards for conveying multimedia resources via Internet connections. The MIME type informs a program what the object contains (for instance, graphics, sounds, or videos).)';
  2796.             sTemp=L_IDH_ofdefMultipurposeInternetMailExtensionsMIME_TEXT;
  2797.             break;
  2798.         case 'IDH_ofdefNavigationPane':
  2799.             L_IDH_ofdefNavigationPane_TEXT='(navigation pane: The area in the Help window that contains the Table of Contents, the Answer Wizard, and the Index.)';
  2800.             sTemp=L_IDH_ofdefNavigationPane_TEXT;
  2801.             break;
  2802.         case 'IDH_ofdefOffline':
  2803.             L_IDH_ofdefOffline_TEXT='(offline: In reference to one or more computers, not being connected to a network.)';
  2804.             sTemp=L_IDH_ofdefOffline_TEXT;
  2805.             break;
  2806.         case 'IDH_ofdefOLE':
  2807.             L_IDH_ofdefOLE_TEXT='(OLE: A program-integration technology that you can use to share information between programs. All Office programs support OLE, so you can share information through linked and embedded objects.)';
  2808.             sTemp=L_IDH_ofdefOLE_TEXT;
  2809.             break;
  2810.         case 'IDH_ofdefOperatingSystem':
  2811.             L_IDH_ofdefOperatingSystem_TEXT='(operating system: The software that controls the allocation and usage of hardware resources such as memory, central processing unit (CPU) time, disk space, and peripheral devices. The operating system is the foundation on which programs are built.)';
  2812.             sTemp=L_IDH_ofdefOperatingSystem_TEXT;
  2813.             break;
  2814.         case 'IDH_ofdefPath':
  2815.             L_IDH_ofdefPath_TEXT='(path: The route that the operating system uses to locate a folder or file; for example, C:\\House finances\\March.doc.)';
  2816.             sTemp=L_IDH_ofdefPath_TEXT;
  2817.             break;
  2818.         case 'IDH_ofdefPortalNetworkGraphicsPNG':
  2819.             L_IDH_ofdefPortalNetworkGraphicsPNG_TEXT='(PNG: A graphic file format that is supported by some World Wide Web browsers. PNG supports variable transparency of images (alpha channels) and control of image brightness on different computers (gamma correction). PNG files are compressed bitmaps.)';
  2820.             sTemp=L_IDH_ofdefPortalNetworkGraphicsPNG_TEXT;
  2821.             break;
  2822.         case 'IDH_ofdefPublish':
  2823.             L_IDH_ofdefPublish_TEXT='(publish: To save a copy of a file in Hypertext Markup Language (HTML) format to a Web server.)';
  2824.             sTemp=L_IDH_ofdefPublish_TEXT;
  2825.             break;
  2826.         case 'IDH_ofdefRealtime':
  2827.             L_IDH_ofdefRealtime_TEXT='(real time: The actual time in which events occur. When documents are shared in real time, any changes made to them are instantly visible to everyone sharing the document.)';
  2828.             sTemp=L_IDH_ofdefRealtime_TEXT;
  2829.             break;
  2830.         case 'IDH_ofdefRelationalDatabase':
  2831.             L_IDH_ofdefRelationalDatabase_TEXT='(relational database: A type of database that stores information in tables. Uses matching values from two tables to relate data in one table to data in the other table. In a relational database, you typically store a specific type of data just once.)';
  2832.             sTemp=L_IDH_ofdefRelationalDatabase_TEXT;
  2833.             break;
  2834.         case 'IDH_ofdefRelativeLink':
  2835.             L_IDH_ofdefRelativeLink_TEXT='(relative link: When a hyperlink uses a path based on a relative link, you can move the file that contains the hyperlink and the hyperlink destination without breaking the hyperlink. Move the file that contains the hyperlink and its destination together.)';
  2836.             sTemp=L_IDH_ofdefRelativeLink_TEXT;
  2837.             break;
  2838.         case 'IDH_ofdefReplication':
  2839.             L_IDH_ofdefReplication_TEXT='(replication: A process, used by the synchronization feature, that copies selected files from a Web server to your hard disk. This process makes it possible for you to view and modify these files when you are not connected to the Web server.)';
  2840.             sTemp=L_IDH_ofdefReplication_TEXT;
  2841.             break;
  2842.         case 'IDH_ofdefRichText':
  2843.             L_IDH_ofdefRichText_TEXT='(rich text field: A field that can show formatting and graphics, such as an embedded object, and not just text.)';
  2844.             sTemp=L_IDH_ofdefRichText_TEXT;
  2845.             break;
  2846.         case 'IDH_ofdefRoamingUserProfile':
  2847.             L_IDH_ofdefRoamingUserProfile_TEXT='(roaming user profile: A group of settings that defines customization preferences and options for a particular user, as well as personalized files, such as custom dictionaries and templates.)';
  2848.             sTemp=L_IDH_ofdefRoamingUserProfile_TEXT;
  2849.             break;
  2850.         case 'IDH_ofdefScreenTips':
  2851.             L_IDH_ofdefScreenTips_TEXT='(ScreenTips: Notes that appear on the screen to provide information about a toolbar button, tracked change, or comment, or to display a footnote or endnote. ScreenTips also display the text that will appear if you choose to insert a date or AutoText entry.)';
  2852.             sTemp=L_IDH_ofdefScreenTips_TEXT;
  2853.             break;
  2854.         case 'IDH_ofdefScriptAnchor':
  2855.             L_IDH_ofdefScriptAnchor_TEXT='(script anchor: The visual representation of a script on a Web page that you open in a Microsoft Office program. Script anchors are not displayed by default. Different script anchors represent scripts written in different scripting languages.)';
  2856.             sTemp=L_IDH_ofdefScriptAnchor_TEXT;
  2857.             break;
  2858.         case 'IDH_ofdefSecureSocketsLayerSSL':
  2859.             L_IDH_ofdefSecureSocketsLayerSSL_TEXT='(Secure Sockets Layer (SSL): A proposed open standard that was developed by Netscape Communications for establishing a secure communications channel to prevent the interception of critical information, such as credit card numbers.)';
  2860.             sTemp=L_IDH_ofdefSecureSocketsLayerSSL_TEXT;
  2861.             break;
  2862.         case 'IDH_ofdefSecurityFile':
  2863.             L_IDH_ofdefSecurityFile_TEXT='(security file: A file that contains a digital code that makes it possible to seal messages or to add a digital signature to messages. This file can be stored on a 3.5-inch disk or on your computer\'s hard disk.)';
  2864.             sTemp=L_IDH_ofdefSecurityFile_TEXT;
  2865.             break;
  2866.         case 'IDH_ofdefServer':
  2867.             L_IDH_ofdefServer_TEXT='(server: On a local area network, a computer that controls access to all or part of the network and its resources, such as printers. On the World Wide Web, a computer running Web server software that responds to HTTP protocol requests. Also called a host.)';
  2868.             sTemp=L_IDH_ofdefServer_TEXT;
  2869.             break;
  2870.         case 'IDH_ofdefShortcut':
  2871.             L_IDH_ofdefShortcut_TEXT='(shortcut: An icon that points to a program or file that is stored in another location.)';
  2872.             sTemp=L_IDH_ofdefShortcut_TEXT;
  2873.             break;
  2874.         case 'IDH_ofdefSynchronization':
  2875.             L_IDH_ofdefSynchronization_TEXT='(synchronization: The process of comparing files that have been replicated from a Web server to another computer, for the purpose of keeping the files updated.)';
  2876.             sTemp=L_IDH_ofdefSynchronization_TEXT;
  2877.             break;
  2878.         case 'IDH_ofdefTextQuery':
  2879.             L_IDH_ofdefTextQuery_TEXT='(text query: One or more phrases that can contain operators, quotation marks, wildcards such as * or ?, and parentheses.)';
  2880.             sTemp=L_IDH_ofdefTextQuery_TEXT;
  2881.             break;
  2882.         case 'IDH_ofdefTheMicrosoftNetwork':
  2883.             L_IDH_ofdefTheMicrosoftNetwork_TEXT='(MSN: Internet connectivity service with which you can exchange messages with people worldwide; read news, sports, weather, and financial information; find answers to technical questions; and download from a collection of thousands of programs.)';
  2884.             sTemp=L_IDH_ofdefTheMicrosoftNetwork_TEXT;
  2885.             break;
  2886.         case 'IDH_ofdefThreadedDiscussion':
  2887.             L_IDH_ofdefThreadedDiscussion_TEXT='(threaded discussion: In an online forum, such as a newsgroup, a series of messages or articles in which replies to a message are nested directly under it instead of arranged in chronological or alphabetical order.)';
  2888.             sTemp=L_IDH_ofdefThreadedDiscussion_TEXT;
  2889.             break;
  2890.         case 'IDH_ofdefTopicPane':
  2891.             L_IDH_ofdefTopicPane_TEXT='(topic pane: The area of the Help window that contains a Help topic.)';
  2892.             sTemp=L_IDH_ofdefTopicPane_TEXT;
  2893.             break;
  2894.         case 'IDH_ofdefUserProfile':
  2895.             L_IDH_ofdefUserProfile_TEXT='(user profile: Settings that define customization preferences for a particular user, as well as personalized files such as custom dictionaries and AutoCorrect lists. The operating system uses these settings to configure your computer when you log on.)';
  2896.             sTemp=L_IDH_ofdefUserProfile_TEXT;
  2897.             break;
  2898.         case 'IDH_ofdefValue':
  2899.             L_IDH_ofdefValue_TEXT='(value: The text, date, number, or logical input that completes a condition that a field must meet for searching or filtering. For example, the field Author with the condition <b>equals</b> must include a value, such as <b>John</b>, to be complete.)';
  2900.             sTemp=L_IDH_ofdefValue_TEXT;
  2901.             break;
  2902.         case 'IDH_ofdefVectorGraphics':
  2903.             L_IDH_ofdefVectorGraphics_TEXT='(vector graphics: The representation of graphic objects such as lines, arcs, and squares by using geometrical formulas. By contrast, bitmapped graphics (also called raster graphics) are stored as a collection of pixels.)';
  2904.             sTemp=L_IDH_ofdefVectorGraphics_TEXT;
  2905.             break;
  2906.         case 'IDH_ofdefVectorMarkupLanguageVML':
  2907.             L_IDH_ofdefVectorMarkupLanguageVML_TEXT='(Vector Markup Language (VML): A system of marking up, or tagging, two-dimensional vector graphics for publishing on the World Wide Web. VML graphics are scalable and editable, usually take less time to download, and require less disk space.)';
  2908.             sTemp=L_IDH_ofdefVectorMarkupLanguageVML_TEXT;
  2909.             break;
  2910.         case 'IDH_ofdefWAV':
  2911.             L_IDH_ofdefWAV_TEXT='(WAV: A file format in which Windows stores sounds as waveforms. Such files have the extension .wav. Depending on various factors, one minute of sound can occupy as little as 644 kilobytes or as much as 27 megabytes of storage.)';
  2912.             sTemp=L_IDH_ofdefWAV_TEXT;
  2913.             break;
  2914.         case 'IDH_ofdefWhiteboard':
  2915.             L_IDH_ofdefWhiteboard_TEXT='(Whiteboard: Microsoft NetMeeting feature that opens a separate window in which online meeting participants can type text; draw shapes; copy, paste, and delete objects; and highlight or point to text and graphics.)';
  2916.             sTemp=L_IDH_ofdefWhiteboard_TEXT;
  2917.             break;
  2918.         case 'IDH_ofdefWorldWideWeb':
  2919.             L_IDH_ofdefWorldWideWeb_TEXT='(World Wide Web (WWW): The multimedia branch of the Internet that presents not only text, but also graphics, sound, and video. On the Web, users can easily jump from item to item, page to page, or site to site by using hyperlinks.)';
  2920.             sTemp=L_IDH_ofdefWorldWideWeb_TEXT;
  2921.             break;
  2922.         case 'IDH_oftipServer':
  2923.             L_IDH_oftipServer_TEXT='(Web server: A computer that hosts Web pages and responds to requests from browsers. Also known as an HTTP server, a Web server stores files whose URLs begin with <b>http://</b>.)';
  2924.             sTemp=L_IDH_oftipServer_TEXT;
  2925.             break;
  2926.         case 'IDH_oftipToolbar':
  2927.             L_IDH_oftipToolbar_TEXT='(toolbar: A bar with buttons and options that you use to carry out commands. To display a toolbar, click  <b>Customize</b> on the <b>Tools</b> menu, and then click the <b>Toolbars</b> tab.)';
  2928.             sTemp=L_IDH_oftipToolbar_TEXT;
  2929.             break;
  2930.         case 'IDH_ppdefJavaScript':
  2931.             L_IDH_ppdefJavaScript_TEXT='(JavaScript: A scripting language that can be used to add functionality to a Web page or a Web site, or to enhance the look of one. JavaScript scripts can run on any type of client or server computer.)';
  2932.             sTemp=L_IDH_ppdefJavaScript_TEXT;
  2933.             break;
  2934.         case 'IDH_redefPublicFolder':
  2935.             L_IDH_redefPublicFolder_TEXT='(public folder: Folder on a public server that people can use to share information, such as work information, discussions, contacts, tasks, and classified ads. Permissions determine who can view and alter the folder and to what extent.)';
  2936.             sTemp=L_IDH_redefPublicFolder_TEXT;
  2937.             break;
  2938.         case 'ofAbsoluteCellReference':
  2939.             L_ofAbsoluteCellReference_TEXT='(absolute cell reference: In a formula, the exact address of a cell, regardless of the position of the cell that contains the formula. An absolute cell reference takes the form $A$1.)';
  2940.             sTemp=L_ofAbsoluteCellReference_TEXT;
  2941.             break;
  2942.         case 'OfAbsoluteLink':
  2943.             L_OfAbsoluteLink_TEXT='(absolute link: A hyperlink to the exact location of a file on a file server, the World Wide Web, or a company intranet. Absolute links use an exact path; if you move the file containing the hyperlink or a hyperlink destination, the link breaks.)';
  2944.             sTemp=L_OfAbsoluteLink_TEXT;
  2945.             break;
  2946.         case 'ofAbsoluteURL':
  2947.             L_ofAbsoluteURL_TEXT='(absolute URL: The full Internet address of a page or other World Wide Web resource. The absolute URL includes a protocol, such as \"http,\" network location, and optional path and file name. For example, http://example.microsoft.com/.)';
  2948.             sTemp=L_ofAbsoluteURL_TEXT;
  2949.             break;
  2950.         case 'ofAccessibility':
  2951.             L_ofAccessibility_TEXT='(accessibility: The quality of a given system of hardware or software that makes it usable by people with one or more physical disabilities, such as restricted mobility, blindness, or deafness.)';
  2952.             sTemp=L_ofAccessibility_TEXT;
  2953.             break;
  2954.         case 'OfAccessibilityAids':
  2955.             L_OfAccessibilityAids_TEXT='(accessibility aids: Utilities that make computers easier to use for people with disabilities. Examples of accessibility aids include screen readers, speech recognition programs, and on-screen keyboards.)';
  2956.             sTemp=L_OfAccessibilityAids_TEXT;
  2957.             break;
  2958.         case 'ofAccessKey':
  2959.             L_ofAccessKey_TEXT='(access key: A key combination, such as ALT+F, that moves the focus to a menu, command, or control, without using the mouse.)';
  2960.             sTemp=L_ofAccessKey_TEXT;
  2961.             break;
  2962.         case 'OfActions':
  2963.             L_OfActions_TEXT='(actions: Tasks that can be performed by using smart tags. For example, adding a name to a Microsoft Outlook Contacts folder is one action that might be taken with a person name smart tag.)';
  2964.             sTemp=L_OfActions_TEXT;
  2965.             break;
  2966.         case 'ofActiveHyperlink':
  2967.             L_ofActiveHyperlink_TEXT='(active hyperlink: A hyperlink that is currently selected in a Web browser. Some Web browsers indicate the active hyperlink by changing its color.)';
  2968.             sTemp=L_ofActiveHyperlink_TEXT;
  2969.             break;
  2970.         case 'ofActiveServerPage':
  2971.             L_ofActiveServerPage_TEXT='(Active Server Page (ASP): A file that contains embedded server-side scripting that is executed on a server and sent to and displayed in a client Web browser as a standard HTML file.)';
  2972.             sTemp=L_ofActiveServerPage_TEXT;
  2973.             break;
  2974.         case 'ofActiveX':
  2975.             L_ofActiveX_TEXT='(ActiveX: A set of technologies that enables software components to interact with one another in a networked environment, regardless of the language in which the components were created.)';
  2976.             sTemp=L_ofActiveX_TEXT;
  2977.             break;
  2978.         case 'ofActiveXComponent':
  2979.             L_ofActiveXComponent_TEXT='(component/ActiveX component: An application that can use objects supplied by another application, or that exposes its own objects for use by another application.)';
  2980.             sTemp=L_ofActiveXComponent_TEXT;
  2981.             break;
  2982.         case 'ofActiveXControl':
  2983.             L_ofActiveXControl_TEXT='(ActiveX control: A control, such as a check box or button that offers options to users or runs macros or scripts that automate a task. You can write macros for the control in Microsoft Visual Basic for Applications or scripts in Microsoft Script Editor.)';
  2984.             sTemp=L_ofActiveXControl_TEXT;
  2985.             break;
  2986.         case 'ofAddIn':
  2987.             L_ofAddIn_TEXT='(add-in: A supplemental program that adds custom commands or custom features to Microsoft Office.)';
  2988.             sTemp=L_ofAddIn_TEXT;
  2989.             break;
  2990.         case 'ofAdjustmentHandle':
  2991.             L_ofAdjustmentHandle_TEXT='(adjustment handle: A diamond-shaped handle used to adjust the appearance but not the size of most AutoShapes. For example, you can adjust a rounded rectangle to be more or less rounded.)';
  2992.             sTemp=L_ofAdjustmentHandle_TEXT;
  2993.             break;
  2994.         case 'ofADO':
  2995.             L_ofADO_TEXT='(ActiveX Data Objects (ADO): A data access interface that communicates with OLE DB-compliant data sources to connect to, retrieve, manipulate, and update data.)';
  2996.             sTemp=L_ofADO_TEXT;
  2997.             break;
  2998.         case 'ofAliasSQL':
  2999.             L_ofAliasSQL_TEXT='(alias (SQL): An alternative name for a table or field in expressions. Often used to shorten the table or field name for subsequent references in code, to prevent possible ambiguous references, or to provide a more descriptive name in query output.)';
  3000.             sTemp=L_ofAliasSQL_TEXT;
  3001.             break;
  3002.         case 'ofAliasVBA':
  3003.             L_ofAliasVBA_TEXT='(alias (VBA): An alternate name that you give to an external procedure to avoid conflict with a Visual Basic keyword, public variable, constant, or a name not allowed by the Visual Basic naming conventions.)';
  3004.             sTemp=L_ofAliasVBA_TEXT;
  3005.             break;
  3006.         case 'ofAlignment':
  3007.             L_ofAlignment_TEXT='(alignment: The consistent positioning of text, graphics, and other objects. Types of alignment include left, right, and justified.)';
  3008.             sTemp=L_ofAlignment_TEXT;
  3009.             break;
  3010.         case 'ofAlternativeText':
  3011.             L_ofAlternativeText_TEXT='(alternative text: Used by Web browsers to display text during image downloads for users who have graphics turned off and for users who rely on screen-reading software to convert graphics on the screen to spoken words.)';
  3012.             sTemp=L_ofAlternativeText_TEXT;
  3013.             break;
  3014.         case 'ofAnonymousNamedBinding':
  3015.             L_ofAnonymousNamedBinding_TEXT='(anonymous and named binding: Ways of binding to a directory. Anonymous users can access a limited area of the directory. Named users may be able to set attributes and may have access to more areas of the directory, if the administrator allows it.)';
  3016.             sTemp=L_ofAnonymousNamedBinding_TEXT;
  3017.             break;
  3018.         case 'ofANSICharacterSet':
  3019.             L_ofANSICharacterSet_TEXT='(ANSI character set: An 8-bit character set used by Microsoft Windows that allows you to represent up to 256 characters (0 through 255) by using your keyboard. The ASCII character set is a subset of the ANSI set.)';
  3020.             sTemp=L_ofANSICharacterSet_TEXT;
  3021.             break;
  3022.         case 'ofantialiasing':
  3023.             L_ofantialiasing_TEXT='(anti-aliasing: The smoothing of jagged edges in graphical elements and text. Anti-aliasing softens the roughness of jagged lines or curves by shading neighboring pixels.)';
  3024.             sTemp=L_ofantialiasing_TEXT;
  3025.             break;
  3026.         case 'ofApplet':
  3027.             L_ofApplet_TEXT='(applet: A Java class that is loaded and run by an already-running Java application (any Web browser capable of interpreting Java). Java applets are frequently used to add multimedia effects and interactivity to Web pages, such as video and animations.)';
  3028.             sTemp=L_ofApplet_TEXT;
  3029.             break;
  3030.         case 'ofArgument':
  3031.             L_ofArgument_TEXT='(argument: A value that provides information to an action, an event, a method, a property, a function, or a procedure.)';
  3032.             sTemp=L_ofArgument_TEXT;
  3033.             break;
  3034.         case 'ofArray':
  3035.             L_ofArray_TEXT='(array: A variable that contains a finite number of elements that have a common name and data type. Each element of an array is identified by a unique index number. Changes made to one element of an array don\'t affect the other elements.)';
  3036.             sTemp=L_ofArray_TEXT;
  3037.             break;
  3038.         case 'ofASCII':
  3039.             L_ofASCII_TEXT='(ASCII: Code representing characters in the English language as numbers. Each character is assigned a number from 0 to 127. Most computers use ASCII to represent text and to transfer data from one computer to another.)';
  3040.             sTemp=L_ofASCII_TEXT;
  3041.             break;
  3042.         case 'ofAssistantOb':
  3043.             L_ofAssistantOb_TEXT='(Assistant object: The <b>Assistant</b> is the shared Microsoft Office Assistant object. It is a fully programmable object.)';
  3044.             sTemp=L_ofAssistantOb_TEXT;
  3045.             break;
  3046.         case 'OfAssistantShape':
  3047.             L_OfAssistantShape_TEXT='(assistant shape: In an organization chart, a shape that is placed below and connected to any other shape with an elbow connector. This shape is placed above any additional subordinate shapes for the particular superior shape it is attached to.)';
  3048.             sTemp=L_OfAssistantShape_TEXT;
  3049.             break;
  3050.         case 'ofAttribute':
  3051.             L_ofAttribute_TEXT='(attribute: An object or text feature, such as line fill or text color, that you can manipulate by using drawing tools and menu commands.)';
  3052.             sTemp=L_ofAttribute_TEXT;
  3053.             break;
  3054.         case 'OfAuthenticate':
  3055.             L_OfAuthenticate_TEXT='(authenticate: Process used to validate a certificate\'s source delivered by a Web site or used to sign a macro. If the security level enabled on the computer cannot authenticate the digital signature, the certificate is ignored or the user is prompted.)';
  3056.             sTemp=L_OfAuthenticate_TEXT;
  3057.             break;
  3058.         case 'ofAuthentication':
  3059.             L_ofAuthentication_TEXT='(authentication: In a multiuser or network environment, the process of validating user logon information. A name and password are compared to an authorized list, and, if there is a match, access is granted with the level of permission specified.)';
  3060.             sTemp=L_ofAuthentication_TEXT;
  3061.             break;
  3062.         case 'ofAuthenticationdatabase':
  3063.             L_ofAuthenticationdatabase_TEXT='(authentication database: A database on a server that matches user names to passwords.)';
  3064.             sTemp=L_ofAuthenticationdatabase_TEXT;
  3065.             break;
  3066.         case 'ofAutomation':
  3067.             L_ofAutomation_TEXT='(Automation: A way to work with an application\'s objects from another application or development tool. Formerly called OLE Automation, Automation is an industry standard and a feature of the Component Object Model (COM).)';
  3068.             sTemp=L_ofAutomation_TEXT;
  3069.             break;
  3070.         case 'ofAutomationObject':
  3071.             L_ofAutomationObject_TEXT='(Automation object: An object supplied by a component that supports Automation. Can also be called an ActiveX object or simply an object.)';
  3072.             sTemp=L_ofAutomationObject_TEXT;
  3073.             break;
  3074.         case 'ofBevel':
  3075.             L_ofBevel_TEXT='(bevel: A three-dimensional edge effect that is applied to the border of an object.)';
  3076.             sTemp=L_ofBevel_TEXT;
  3077.             break;
  3078.         case 'ofbidiDecoTypeNaskh':
  3079.             L_ofbidiDecoTypeNaskh_TEXT='(DecoType Ruq\'ah: Enriches the display of Arabic text by using the Ruq\'ah script. This script uses object linking and embedding (OLE) to create and add objects to a document.)';
  3080.             sTemp=L_ofbidiDecoTypeNaskh_TEXT;
  3081.             break;
  3082.         case 'ofbidiDecoTypeRuqah':
  3083.             L_ofbidiDecoTypeRuqah_TEXT='(DecoType Naskh: Enriches the display of Arabic text by using the Naskh script. This script uses object linking and embedding (OLE) to create and add objects to a document.)';
  3084.             sTemp=L_ofbidiDecoTypeRuqah_TEXT;
  3085.             break;
  3086.         case 'ofBinary':
  3087.             L_ofBinary_TEXT='(binary: A file that contains encoded information that is interpreted according to the application that created it. In general, a binary file can be edited only by the application in which it was created.)';
  3088.             sTemp=L_ofBinary_TEXT;
  3089.             break;
  3090.         case 'ofBinder':
  3091.             L_ofBinder_TEXT='(Binder: A Microsoft Office program that you can use to organize related documents. You can check spelling, number pages consecutively across all documents in the binder, and print the documents.)';
  3092.             sTemp=L_ofBinder_TEXT;
  3093.             break;
  3094.         case 'ofBitmap':
  3095.             L_ofBitmap_TEXT='(bitmap: A picture made from a series of small dots, much like a piece of graph paper with certain squares filled in to form shapes and lines. When stored as files, bitmaps usually have the extension .bmp.)';
  3096.             sTemp=L_ofBitmap_TEXT;
  3097.             break;
  3098.         case 'ofBleed':
  3099.             L_ofBleed_TEXT='(bleed: The extent to which a picture runs off the printed page.)';
  3100.             sTemp=L_ofBleed_TEXT;
  3101.             break;
  3102.         case 'ofBookmark':
  3103.             L_ofBookmark_TEXT='(bookmark: A location or selection of text in a file that you name for reference purposes. Bookmarks identify a location within your file that you can later refer or link to.)';
  3104.             sTemp=L_ofBookmark_TEXT;
  3105.             break;
  3106.         case 'ofBoolean':
  3107.             L_ofBoolean_TEXT='(Boolean: An expression that can be evaluated as either true (nonzero) or false (0). You can use the keywords <b>True</b> and <b>False</b> to supply the values of -1 and 0, respectively. The field data type Yes/No is Boolean and has the value of -1 for Yes)';
  3108.             sTemp=L_ofBoolean_TEXT;
  3109.             break;
  3110.         case 'ofBreakMode':
  3111.             L_ofBreakMode_TEXT='(break mode: A temporary suspension of program execution while in the development environment. In break mode, you can examine, debug, reset, step through, or continue program execution.)';
  3112.             sTemp=L_ofBreakMode_TEXT;
  3113.             break;
  3114.         case 'ofBreakPoint':
  3115.             L_ofBreakPoint_TEXT='(breakpoint: A line of code in a <b>Function</b> or <b>Sub</b> procedure at which Microsoft Visual Basic automatically suspends execution.)';
  3116.             sTemp=L_ofBreakPoint_TEXT;
  3117.             break;
  3118.         case 'ofBrokenHyperlink':
  3119.             L_ofBrokenHyperlink_TEXT='(broken hyperlink: A hyperlink that points to an incorrect URL or a missing page or file.)';
  3120.             sTemp=L_ofBrokenHyperlink_TEXT;
  3121.             break;
  3122.         case 'ofBrowserSafe':
  3123.             L_ofBrowserSafe_TEXT='(browser safe: Designed to be used with a range of Web browsers. For example, a browser-safe color palette protects against color flashing or inaccurate color mapping, problems common to pictures whose palettes are incompatible with certain browsers.)';
  3124.             sTemp=L_ofBrowserSafe_TEXT;
  3125.             break;
  3126.         case 'ofBrowsersafepalette':
  3127.             L_ofBrowsersafepalette_TEXT='(browser-safe palette: A palette of colors designed to display pictures on the Web, regardless of the browser or operating system used. A browser-safe color palette protects against color-flashing or inaccurate color mapping.)';
  3128.             sTemp=L_ofBrowsersafepalette_TEXT;
  3129.             break;
  3130.         case 'OfBuiltinMenu':
  3131.             L_OfBuiltinMenu_TEXT='(built-in menu: A menu included with Microsoft Office; it is not created by the user.)';
  3132.             sTemp=L_OfBuiltinMenu_TEXT;
  3133.             break;
  3134.         case 'OfBuiltinToolbar':
  3135.             L_OfBuiltinToolbar_TEXT='(built-in toolbar: A toolbar included with Microsoft Office programs; it is not created by the user.)';
  3136.             sTemp=L_OfBuiltinToolbar_TEXT;
  3137.             break;
  3138.         case 'ofBullet':
  3139.             L_ofBullet_TEXT='(bullet: A dot or other symbol that is placed before text, such as items in a list, to add emphasis.)';
  3140.             sTemp=L_ofBullet_TEXT;
  3141.             break;
  3142.         case 'ofCaseSensitive':
  3143.             L_ofCaseSensitive_TEXT='(case-sensitive: Capable of distinguishing between uppercase and lowercase letters. A case-sensitive search finds only text that is an exact match of uppercase and lowercase letters.)';
  3144.             sTemp=L_ofCaseSensitive_TEXT;
  3145.             break;
  3146.         case 'ofCell':
  3147.             L_ofCell_TEXT='(cell: A box formed by the intersection of a row and column in a worksheet or a table, in which you enter information.)';
  3148.             sTemp=L_ofCell_TEXT;
  3149.             break;
  3150.         case 'ofCharacter':
  3151.             L_ofCharacter_TEXT='(character: A letter, number, punctuation mark, or symbol.)';
  3152.             sTemp=L_ofCharacter_TEXT;
  3153.             break;
  3154.         case 'ofCharacterEntity':
  3155.             L_ofCharacterEntity_TEXT='(character entity: A code that\'s used in HTML to describe symbols, international letters, and other special characters. Character entities are maintained by the International Standards Organization (ISO).)';
  3156.             sTemp=L_ofCharacterEntity_TEXT;
  3157.             break;
  3158.         case 'ofCharacterFormatting':
  3159.             L_ofCharacterFormatting_TEXT='(character formatting: Formatting you can apply to selected text characters.)';
  3160.             sTemp=L_ofCharacterFormatting_TEXT;
  3161.             break;
  3162.         case 'OfCharacterSet':
  3163.             L_OfCharacterSet_TEXT='(character set: A grouping of alphabetic, numeric, and other characters that have some relationship in common. For example, the standard ASCII character set includes letters, numbers, symbols, and control codes that make up the ASCII coding scheme.)';
  3164.             sTemp=L_OfCharacterSet_TEXT;
  3165.             break;
  3166.         case 'ofCharacterspacing':
  3167.             L_ofCharacterspacing_TEXT='(character spacing: The distance between characters in a line of text. Tracking, kerning, and scaling can be used to adjust the space between characters.)';
  3168.             sTemp=L_ofCharacterspacing_TEXT;
  3169.             break;
  3170.         case 'OfChartComponent':
  3171.             L_OfChartComponent_TEXT='(Chart Component: A Microsoft Office Web Component that provides interactive charting functionality on a Web page. You can illustrate data in a chart and give users the ability to change data, change chart options, and see changes reflected in the chart.)';
  3172.             sTemp=L_OfChartComponent_TEXT;
  3173.             break;
  3174.         case 'ofCitation':
  3175.             L_ofCitation_TEXT='(citation: A reference to a specific legal case, statute, or other legal document.)';
  3176.             sTemp=L_ofCitation_TEXT;
  3177.             break;
  3178.         case 'ofClass':
  3179.             L_ofClass_TEXT='(class: The definition for an object, including its name, its properties and methods, and any events that it has. When you create an instance of a class, you create a new object with all of the characteristics defined by that class.)';
  3180.             sTemp=L_ofClass_TEXT;
  3181.             break;
  3182.         case 'ofClassModule':
  3183.             L_ofClassModule_TEXT='(class module: A module that can contain the definition for a new object. When you create a new instance of a class, you create the new object. Procedures defined in the module become the properties and methods of the object.)';
  3184.             sTemp=L_ofClassModule_TEXT;
  3185.             break;
  3186.         case 'ofClear':
  3187.             L_ofClear_TEXT='(clear: To change a setting to \"off\" or to remove a value.)';
  3188.             sTemp=L_ofClear_TEXT;
  3189.             break;
  3190.         case 'ofClip':
  3191.             L_ofClip_TEXT='(clip: A single media file, including art, sound, animation, or movies.)';
  3192.             sTemp=L_ofClip_TEXT;
  3193.             break;
  3194.         case 'ofclipart':
  3195.             L_ofclipart_TEXT='(clip art: A single piece of ready-made art, often appearing as a bitmap or a combination of drawn shapes.)';
  3196.             sTemp=L_ofclipart_TEXT;
  3197.             break;
  3198.         case 'OfClipCollection':
  3199.             L_OfClipCollection_TEXT='(clip collection: A hierarchical organization of media clips. You can create your own clip collections, import clip collections, or add, move, or copy clips from one collection to another.)';
  3200.             sTemp=L_OfClipCollection_TEXT;
  3201.             break;
  3202.         case 'OfClipGallery':
  3203.             L_OfClipGallery_TEXT='(Clip Organizer: Microsoft Office program that contains drawings, photographs, sounds, videos, and other media files that you can insert and use in presentations, publications, and other Office documents.)';
  3204.             sTemp=L_OfClipGallery_TEXT;
  3205.             break;
  3206.         case 'OfCodePage':
  3207.             L_OfCodePage_TEXT='(code page: A table that relates the binary character codes used by a program to keys on the keyboard or to the appearance of characters on the display. Code pages are a means of providing support for the languages used in different countries.)';
  3208.             sTemp=L_OfCodePage_TEXT;
  3209.             break;
  3210.         case 'ofCodeWindow':
  3211.             L_ofCodeWindow_TEXT='(Code window: A window in the Microsoft Visual Basic Editor in which you write, display, and edit Visual Basic code. You can open as many Code windows as you have modules.)';
  3212.             sTemp=L_ofCodeWindow_TEXT;
  3213.             break;
  3214.         case 'ofCollection':
  3215.             L_ofCollection_TEXT='(collection: An object that contains a set of related objects. An object\'s position in the collection can change whenever a change occurs in the collection; therefore, the position of any specific object in the collection may vary.)';
  3216.             sTemp=L_ofCollection_TEXT;
  3217.             break;
  3218.         case 'ofColumn':
  3219.             L_ofColumn_TEXT='(column: Either the vertical arrangement of text into one or more side-by-side sections, or the vertical arrangement of cells in a table.)';
  3220.             sTemp=L_ofColumn_TEXT;
  3221.             break;
  3222.         case 'ofCommandLine':
  3223.             L_ofCommandLine_TEXT='(command line: The string of characters used to start an application.)';
  3224.             sTemp=L_ofCommandLine_TEXT;
  3225.             break;
  3226.         case 'ofCompileTime':
  3227.             L_ofCompileTime_TEXT='(compile time: The time during which Visual Basic prepares code for execution. Modules automatically compile before they run.)';
  3228.             sTemp=L_ofCompileTime_TEXT;
  3229.             break;
  3230.         case 'ofcomponentobjectmodelcom':
  3231.             L_ofcomponentobjectmodelcom_TEXT='(Component Object Model (COM): A specification developed by Microsoft for building software components that can be assembled into programs or can add functionality to existing programs running on Microsoft Windows operating systems.)';
  3232.             sTemp=L_ofcomponentobjectmodelcom_TEXT;
  3233.             break;
  3234.         case 'ofCompressionutility':
  3235.             L_ofCompressionutility_TEXT='(compression utility: A software program that reduces a file\'s size for storage on a disk. If a compressed file is too large to fit onto a single disk, the compression utility copies it onto multiple disks.)';
  3236.             sTemp=L_ofCompressionutility_TEXT;
  3237.             break;
  3238.         case 'ofConcordance':
  3239.             L_ofConcordance_TEXT='(concordance file: An index file with two columns: the first column lists the text in the document that you want to index, and the second column lists the index entries to generate from the text in the first column.)';
  3240.             sTemp=L_ofConcordance_TEXT;
  3241.             break;
  3242.         case 'ofConditionalCompilerConstant':
  3243.             L_ofConditionalCompilerConstant_TEXT='(conditional compiler constant: A Visual Basic identifier that\'s defined in the host application or by using the <b>#Const</b> compiler directive, and used by other compiler directives to determine when or if certain blocks of code are compiled.)';
  3244.             sTemp=L_ofConditionalCompilerConstant_TEXT;
  3245.             break;
  3246.         case 'ofConditionalExpression':
  3247.             L_ofConditionalExpression_TEXT='(conditional expression: An expression evaluated and compared to a value; for example, <b>If...Then</b> and <b>Select Case</b> statements. If the condition is met, one or more operations are performed. If it isn\'t met, the operation is skipped.)';
  3248.             sTemp=L_ofConditionalExpression_TEXT;
  3249.             break;
  3250.         case 'ofConstant':
  3251.             L_ofConstant_TEXT='(constant: A value that is not calculated and, therefore, does not change. For example, the number 210, and the text \"Quarterly Earnings\" are constants. An expression, or a value resulting from an expression, is not a constant.)';
  3252.             sTemp=L_ofConstant_TEXT;
  3253.             break;
  3254.         case 'ofControl':
  3255.             L_ofControl_TEXT='(control: A graphical user interface object, such as a text box, check box, scroll bar, or command button, that lets users control the program. You use controls to display data or choices, perform an action, or make the user interface easier to read.)';
  3256.             sTemp=L_ofControl_TEXT;
  3257.             break;
  3258.         case 'ofCoordinatePair':
  3259.             L_ofCoordinatePair_TEXT='(coordinate pair: A pair of values representing the x- and y-coordinates of a point that are stored in a two-dimensional array that can contain coordinates for many points.)';
  3260.             sTemp=L_ofCoordinatePair_TEXT;
  3261.             break;
  3262.         case 'ofCounter':
  3263.             L_ofCounter_TEXT='(counter: A program that is used on a Web page to count the number of people that have visited that site.)';
  3264.             sTemp=L_ofCounter_TEXT;
  3265.             break;
  3266.         case 'OfCoworkerShape':
  3267.             L_OfCoworkerShape_TEXT='(coworker shape: In an organization chart, a shape next to another shape that is connected to the same superior (or manager) shape.)';
  3268.             sTemp=L_OfCoworkerShape_TEXT;
  3269.             break;
  3270.         case 'ofCriteria':
  3271.             L_ofCriteria_TEXT='(criteria: Conditions you specify to limit which records are included in the result set of a query or filter.)';
  3272.             sTemp=L_ofCriteria_TEXT;
  3273.             break;
  3274.         case 'ofCrop':
  3275.             L_ofCrop_TEXT='(crop: To trim vertical or horizontal edges of an object. Pictures are often cropped to focus attention on a particular area.)';
  3276.             sTemp=L_ofCrop_TEXT;
  3277.             break;
  3278.         case 'ofCube':
  3279.             L_ofCube_TEXT='(cube: An OLAP data structure. A cube contains dimensions, like Country/Region/City, and data fields, like Sales Amount. Dimensions organize types of data into hierarchies with levels of detail, and data fields measure quantities.)';
  3280.             sTemp=L_ofCube_TEXT;
  3281.             break;
  3282.         case 'ofCustomDialogBox':
  3283.             L_ofCustomDialogBox_TEXT='(custom dialog box: A modal pop-up form you create to ask the user for additional information or to display a message.)';
  3284.             sTemp=L_ofCustomDialogBox_TEXT;
  3285.             break;
  3286.         case 'ofCustomdictionary':
  3287.             L_ofCustomdictionary_TEXT='(custom dictionary: A list of words not in the standard dictionary that an author wants the spelling checker to accept as correct.)';
  3288.             sTemp=L_ofCustomdictionary_TEXT;
  3289.             break;
  3290.         case 'OfCycleDiagram':
  3291.             L_OfCycleDiagram_TEXT='(Cycle diagram: A diagram that is used to show a process that has a continuous cycle.)';
  3292.             sTemp=L_OfCycleDiagram_TEXT;
  3293.             break;
  3294.         case 'ofDAO':
  3295.             L_ofDAO_TEXT='(Data Access Objects (DAO): A data access interface that communicates with Microsoft Jet and ODBC-compliant data sources to connect to, retrieve, manipulate, and update data and the database structure.)';
  3296.             sTemp=L_ofDAO_TEXT;
  3297.             break;
  3298.         case 'ofDatabase':
  3299.             L_ofDatabase_TEXT='(database: A collection of data related to a particular subject or purpose. Within a database, information about a particular entity, such as an employee or order, is categorized into tables, records, and fields.)';
  3300.             sTemp=L_ofDatabase_TEXT;
  3301.             break;
  3302.         case 'ofDataSource':
  3303.             L_ofDataSource_TEXT='(data source: A file that contains the information to be merged into a document. For example, the list of names and addresses you want to use in a mail merge. You must connect to the data source before you can use the information in it.)';
  3304.             sTemp=L_ofDataSource_TEXT;
  3305.             break;
  3306.         case 'ofDataType':
  3307.             L_ofDataType_TEXT='(data type: The characteristic of a field that determines what type of data it can hold. Data types include Boolean, Integer, Long, Currency, Single, Double, Date, String, and Variant (default).)';
  3308.             sTemp=L_ofDataType_TEXT;
  3309.             break;
  3310.         case 'ofDDEchannel':
  3311.             L_ofDDEchannel_TEXT='(Dynamic Data Exchange (DDE) channel: An active link between Microsoft Windows programs over which data can be exchanged.)';
  3312.             sTemp=L_ofDDEchannel_TEXT;
  3313.             break;
  3314.         case 'ofDebugging':
  3315.             L_ofDebugging_TEXT='(debugging: The process of finding and fixing errors in a Visual Basic procedure or a macro. Debugging usually involves executing specific portions of the procedure or macro and analyzing them at various points.)';
  3316.             sTemp=L_ofDebugging_TEXT;
  3317.             break;
  3318.         case 'ofdefAnimatedGIF':
  3319.             L_ofdefAnimatedGIF_TEXT='(animated GIF: A file that contains a series of Graphics Interchange Format (GIF) images that are displayed in rapid sequence by some Web browsers to produce an animated effect.)';
  3320.             sTemp=L_ofdefAnimatedGIF_TEXT;
  3321.             break;
  3322.         case 'ofDefault':
  3323.             L_ofDefault_TEXT='(default: A predefined setting. You can accept the default option settings, or you can change them to suit your own preferences.)';
  3324.             sTemp=L_ofDefault_TEXT;
  3325.             break;
  3326.         case 'ofDefaultProperty':
  3327.             L_ofDefaultProperty_TEXT='(default properties and methods: Visual Basic applies the default property or method to a given object to resolve an expression that wouldn\'t otherwise be valid. You can omit the keywords for default properties or methods in your code.)';
  3328.             sTemp=L_ofDefaultProperty_TEXT;
  3329.             break;
  3330.         case 'ofdefBinding':
  3331.             L_ofdefBinding_TEXT='(early and late binding: The verification of an object variable referring to an object from another application, either at compile time (early) or run time (late). Late bound code is slower than early bound code.)';
  3332.             sTemp=L_ofdefBinding_TEXT;
  3333.             break;
  3334.         case 'ofdefButtonControl':
  3335.             L_ofdefButtonControl_TEXT='(button control: A button on a toolbar or a menu item on a menu, submenu, or shortcut menu that runs a command when it\'s clicked. Toolbar buttons and menu items share the same properties and methods.)';
  3336.             sTemp=L_ofdefButtonControl_TEXT;
  3337.             break;
  3338.         case 'ofdefComboBoxControl':
  3339.             L_ofdefComboBoxControl_TEXT='(combo box control: A custom edit box, drop-down list box, or combo box on a menu bar, toolbar, menu, submenu, or shortcut menu. When a toolbar is docked vertically, any custom combo box controls that it contains aren\'t visible.)';
  3340.             sTemp=L_ofdefComboBoxControl_TEXT;
  3341.             break;
  3342.         case 'ofdefCommandBar':
  3343.             L_ofdefCommandBar_TEXT='(command bar: Toolbars, menu bars, and shortcut (right-click) menus are combined into a single functionality, called \"toolbars\" in the user interface, and \"command bars\" in VBA. Command bars can be one of three types: menu bar, toolbar, or pop-up menu.)';
  3344.             sTemp=L_ofdefCommandBar_TEXT;
  3345.             break;
  3346.         case 'ofdefCommandBarControl':
  3347.             L_ofdefCommandBarControl_TEXT='(command bar control: A built-in or custom control on a menu bar, toolbar, menu, submenu, or shortcut menu. Custom controls you can add to command bars include buttons, edit boxes, drop-down list boxes, and pop-up controls, which display a menu or submenu.)';
  3348.             sTemp=L_ofdefCommandBarControl_TEXT;
  3349.             break;
  3350.         case 'ofdefInputMethodEditor':
  3351.             L_ofdefInputMethodEditor_TEXT='(IME: A program that enters East Asian text (Traditional Chinese, Simplified Chinese, Japanese, or Korean) into programs by converting keystrokes into complex East Asian characters. The IME is treated as an alternate type of keyboard layout.)';
  3352.             sTemp=L_ofdefInputMethodEditor_TEXT;
  3353.             break;
  3354.         case 'ofdefListBox':
  3355.             L_ofdefListBox_TEXT='(list box: A control that provides a list of choices. A list box consists of a list and an optional label.)';
  3356.             sTemp=L_ofdefListBox_TEXT;
  3357.             break;
  3358.         case 'ofdefLiteral':
  3359.             L_ofdefLiteral_TEXT='(literal: A value used exactly as you see it. For example, the number 25 and the string \"Hello\" are both literals. You can use literals in expressions, and you can assign literals to constants or variables in Visual Basic.)';
  3360.             sTemp=L_ofdefLiteral_TEXT;
  3361.             break;
  3362.         case 'ofdefLocalizedVersion':
  3363.             L_ofdefLocalizedVersion_TEXT='(localized version: A version of a program that has been translated into another language, also known as an international version. For example, France, Hungary, and the United States all use different localized versions of Microsoft Word.)';
  3364.             sTemp=L_ofdefLocalizedVersion_TEXT;
  3365.             break;
  3366.         case 'ofdefLocalsWindow':
  3367.             L_ofdefLocalsWindow_TEXT='(Locals window: A window in the Visual Basic Editor that automatically displays all of the declared variables, and their values, in the current procedure.)';
  3368.             sTemp=L_ofdefLocalsWindow_TEXT;
  3369.             break;
  3370.         case 'ofdefLogo':
  3371.             L_ofdefLogo_TEXT='(logo: A distinctive symbol that identifies you, your business, or your organization. It can combine a name, motto, and graphics.)';
  3372.             sTemp=L_ofdefLogo_TEXT;
  3373.             break;
  3374.         case 'ofdefLongDataType':
  3375.             L_ofdefLongDataType_TEXT='(Long data type: A fundamental data type that holds large integers. A <b>Long</b> variable is stored as a 32-bit number ranging in value from -2,147,483,648 to 2,147,483,647.)';
  3376.             sTemp=L_ofdefLongDataType_TEXT;
  3377.             break;
  3378.         case 'ofdefMacro':
  3379.             L_ofdefMacro_TEXT='(macro: An action or a set of actions you can use to automate tasks. Macros are recorded in the Visual Basic for Applications programming language.)';
  3380.             sTemp=L_ofdefMacro_TEXT;
  3381.             break;
  3382.         case 'ofdefMailto':
  3383.             L_ofdefMailto_TEXT='(mailto: The Internet protocol used to send electronic mail.)';
  3384.             sTemp=L_ofdefMailto_TEXT;
  3385.             break;
  3386.         case 'ofdefMainDocument':
  3387.             L_ofdefMainDocument_TEXT='(main document: In a mail-merge operation in Word, the document that contains the text and graphics that are the same for each version of the merged document, for example, the return address or salutation in a form letter.)';
  3388.             sTemp=L_ofdefMainDocument_TEXT;
  3389.             break;
  3390.         case 'ofdefMAPI':
  3391.             L_ofdefMAPI_TEXT='(MAPI: The Microsoft interface specification that allows different messaging and workgroup applications (including e-mail, voice mail, and fax) to work through a single client.)';
  3392.             sTemp=L_ofdefMAPI_TEXT;
  3393.             break;
  3394.         case 'ofdefMargin':
  3395.             L_ofdefMargin_TEXT='(margin: The blank space outside the printing area on a page.)';
  3396.             sTemp=L_ofdefMargin_TEXT;
  3397.             break;
  3398.         case 'ofdefMenu':
  3399.             L_ofdefMenu_TEXT='(menu: A list of commands that is displayed when you click a menu name on a menu bar or other toolbar.)';
  3400.             sTemp=L_ofdefMenu_TEXT;
  3401.             break;
  3402.         case 'ofdefMenuBar':
  3403.             L_ofdefMenuBar_TEXT='(menu bar: The horizontal bar below the title bar that contains the names of menus. A menu bar can be the built-in menu bar or a custom menu bar.)';
  3404.             sTemp=L_ofdefMenuBar_TEXT;
  3405.             break;
  3406.         case 'ofdefMenuBarMacro':
  3407.             L_ofdefMenuBarMacro_TEXT='(menu bar macro: A macro containing AddMenu actions that you can use to create a custom menu bar or shortcut menu.)';
  3408.             sTemp=L_ofdefMenuBarMacro_TEXT;
  3409.             break;
  3410.         case 'ofdefMergeField':
  3411.             L_ofdefMergeField_TEXT='(merge field: A placeholder that you insert in the main document. For example, insert the merge field ├é┬½City├é┬╗ to have Word insert a city name, such as \"Paris,\" that\'s stored in the City data field.)';
  3412.             sTemp=L_ofdefMergeField_TEXT;
  3413.             break;
  3414.         case 'ofdefMetafile':
  3415.             L_ofdefMetafile_TEXT='(metafile: A vector-based graphic. Metafiles are represented as collections of lines rather than pixels, so you can manipulate them without the distortions common to bitmap (raster) graphics.)';
  3416.             sTemp=L_ofdefMetafile_TEXT;
  3417.             break;
  3418.         case 'ofdefMETAtag':
  3419.             L_ofdefMETAtag_TEXT='(META tag: An HTML tag that appears in the HEAD portion of the Web page. META tags supply information about a page but do not affect its appearance. A standard META tag, \"generator,\" is used to indicate the content of a Web page.)';
  3420.             sTemp=L_ofdefMETAtag_TEXT;
  3421.             break;
  3422.         case 'ofdefMethod':
  3423.             L_ofdefMethod_TEXT='(method: A procedure similar to a statement or function that operates on specific objects. For example, you can apply the <b>Print</b> method to the <b>Debug</b> object to transfer printed output to the Immediate window.)';
  3424.             sTemp=L_ofdefMethod_TEXT;
  3425.             break;
  3426.         case 'ofdefMicrosoftVisualBasic':
  3427.             L_ofdefMicrosoftVisualBasic_TEXT='(Microsoft Visual Basic: A high-level, visual-programming version of Basic. Visual Basic was developed by Microsoft for building Windows-based applications.)';
  3428.             sTemp=L_ofdefMicrosoftVisualBasic_TEXT;
  3429.             break;
  3430.         case 'ofdefMicrosoftVisualBasicforApplications':
  3431.             L_ofdefMicrosoftVisualBasicforApplications_TEXT='(Visual Basic for Applications (VBA): A macro-language version of Microsoft Visual Basic that is used to program Windows applications and is included with several Microsoft applications.)';
  3432.             sTemp=L_ofdefMicrosoftVisualBasicforApplications_TEXT;
  3433.             break;
  3434.         case 'ofdefMicrosoftVisualBasicScriptingEdition':
  3435.             L_ofdefMicrosoftVisualBasicScriptingEdition_TEXT='(Visual Basic Scripting Edition (VBScript): A subset of the Microsoft Visual Basic programming system. Microsoft Internet Explorer version 3.0 or later, along with the other Web browsers, can read VBScript programs that are embedded in HTML pages.)';
  3436.             sTemp=L_ofdefMicrosoftVisualBasicScriptingEdition_TEXT;
  3437.             break;
  3438.         case 'ofdefMicrosoftVisualScriptEditor':
  3439.             L_ofdefMicrosoftVisualScriptEditor_TEXT='(Microsoft Script Editor: Used to add text, edit HTML tags, and edit any Microsoft Visual Basic Scripting Edition (VBScript) code in a data access page. You can also view your page in the Script Editor as it would appear in a Web browser.)';
  3440.             sTemp=L_ofdefMicrosoftVisualScriptEditor_TEXT;
  3441.             break;
  3442.         case 'ofdefMicrosoftVisualSourceSafe':
  3443.             L_ofdefMicrosoftVisualSourceSafe_TEXT='(Microsoft Visual SourceSafe: A professional document source-control system developed by Microsoft. FrontPage can be integrated with Visual SourceSafe when both applications are installed on the same computer.)';
  3444.             sTemp=L_ofdefMicrosoftVisualSourceSafe_TEXT;
  3445.             break;
  3446.         case 'ofdefModal':
  3447.             L_ofdefModal_TEXT='(modal: A window or dialog box that requires the user to take some action before the focus can switch to another form or dialog box. Dialog boxes and messages are usually modal.)';
  3448.             sTemp=L_ofdefModal_TEXT;
  3449.             break;
  3450.         case 'ofdefModule':
  3451.             L_ofdefModule_TEXT='(module: A collection of declarations, statements, and procedures stored together as one named unit. There are two types of modules: standard modules and class modules.)';
  3452.             sTemp=L_ofdefModule_TEXT;
  3453.             break;
  3454.         case 'ofdefMultipleSelection':
  3455.             L_ofdefMultipleSelection_TEXT='(multiple selection: The process of selecting nonadjacent and adjacent files and objects.)';
  3456.             sTemp=L_ofdefMultipleSelection_TEXT;
  3457.             break;
  3458.         case 'ofdefNetworklocation':
  3459.             L_ofdefNetworklocation_TEXT='(network location: In a URL, a unique name that identifies an Internet server. A network location has two or more parts, separated by periods, as in microsoft.com. Also called host name and Internet address.)';
  3460.             sTemp=L_ofdefNetworklocation_TEXT;
  3461.             break;
  3462.         case 'ofdefNonbreakingspace':
  3463.             L_ofdefNonbreakingspace_TEXT='(nonbreaking space: A space that\'s used to prevent multiple words from breaking if they fall at the end of a line. For example, you can prevent \"Microsoft Office\" from breaking; instead, the entire item moves to the beginning of the next line.)';
  3464.             sTemp=L_ofdefNonbreakingspace_TEXT;
  3465.             break;
  3466.         case 'ofdefNonprintingregion':
  3467.             L_ofdefNonprintingregion_TEXT='(nonprinting region: The area along the edges of a page that cannot be printed on. Different printers have different nonprinting regions.)';
  3468.             sTemp=L_ofdefNonprintingregion_TEXT;
  3469.             break;
  3470.         case 'ofdefNumericExpression':
  3471.             L_ofdefNumericExpression_TEXT='(numeric expression: Any expression that evaluates to a number. The expression can be any combination of variables, constants, functions, and operators.)';
  3472.             sTemp=L_ofdefNumericExpression_TEXT;
  3473.             break;
  3474.         case 'ofdefObject':
  3475.             L_ofdefObject_TEXT='(object: A table, chart, graphic, equation, or other form of information. Objects created in one application, for example spreadsheets, and linked or embedded in another application are OLE objects.)';
  3476.             sTemp=L_ofdefObject_TEXT;
  3477.             break;
  3478.         case 'ofdefObjectBrowser':
  3479.             L_ofdefObjectBrowser_TEXT='(Object Browser: A dialog box that displays information about objects, properties, methods, and constants in the current project and in referenced object libraries, and that you use to search for an element, get help on it, or paste it into a module.)';
  3480.             sTemp=L_ofdefObjectBrowser_TEXT;
  3481.             break;
  3482.         case 'ofdefODBCDriver':
  3483.             L_ofdefODBCDriver_TEXT='(Open Database Connectivity (ODBC) driver: A program file used to connect to a particular database. Each database program, such as Access or dBASE, or database management system, such as SQL Server, requires a different driver.)';
  3484.             sTemp=L_ofdefODBCDriver_TEXT;
  3485.             break;
  3486.         case 'ofdefOpenDatabaseConnectivity':
  3487.             L_ofdefOpenDatabaseConnectivity_TEXT='(Open Database Connectivity (ODBC): A standard method of sharing data between databases and programs. ODBC drivers use the standard Structured Query Language (SQL) to gain access to external data.)';
  3488.             sTemp=L_ofdefOpenDatabaseConnectivity_TEXT;
  3489.             break;
  3490.         case 'ofdefOperator':
  3491.             L_ofdefOperator_TEXT='(operator: A sign or symbol that specifies the type of calculation to perform within an expression. There are mathematical, comparison, logical, and reference operators.)';
  3492.             sTemp=L_ofdefOperator_TEXT;
  3493.             break;
  3494.         case 'ofdefPane':
  3495.             L_ofdefPane_TEXT='(pane: A portion of the document window bounded by and separated from other portions by vertical or horizontal bars.)';
  3496.             sTemp=L_ofdefPane_TEXT;
  3497.             break;
  3498.         case 'ofdefParagraphStyle':
  3499.             L_ofdefParagraphStyle_TEXT='(paragraph style: A combination of character- and paragraph-formatting characteristics that are named and stored as a set. You can select a paragraph and use the style to apply all of the formatting characteristics to the paragraph at one time.)';
  3500.             sTemp=L_ofdefParagraphStyle_TEXT;
  3501.             break;
  3502.         case 'ofdefPassword':
  3503.             L_ofdefPassword_TEXT='(password: A security method used to restrict access to computer systems and sensitive files. On the World Wide Web, passwords are strings of characters allowing visitors access to Internet services, if authentication is required.)';
  3504.             sTemp=L_ofdefPassword_TEXT;
  3505.             break;
  3506.         case 'ofdefPixel':
  3507.             L_ofdefPixel_TEXT='(pixel: A single unit of measurement that your computer\'s display hardware uses to paint images on your screen. These units, which often appear as tiny dots, compose the pictures displayed by your screen.)';
  3508.             sTemp=L_ofdefPixel_TEXT;
  3509.             break;
  3510.         case 'ofdefPoint':
  3511.             L_ofdefPoint_TEXT='(point: Unit of measure referring to the height of a printed character. A point equals 1/72 of an inch, or approximately 1/28 of a centimeter.)';
  3512.             sTemp=L_ofdefPoint_TEXT;
  3513.             break;
  3514.         case 'ofdefPopupControl':
  3515.             L_ofdefPopupControl_TEXT='(pop-up control: A built-in or custom control on a menu bar or toolbar that displays a menu when it\'s clicked, or a built-in or custom menu item on a menu, submenu, or shortcut menu that displays a submenu when the pointer is positioned over it.)';
  3516.             sTemp=L_ofdefPopupControl_TEXT;
  3517.             break;
  3518.         case 'ofdefpProtocol':
  3519.             L_ofdefpProtocol_TEXT='(protocol: A method of accessing a document or service over the Internet, such as File Transfer Protocol (FTP) or Hypertext Transfer Protocol (HTTP).)';
  3520.             sTemp=L_ofdefpProtocol_TEXT;
  3521.             break;
  3522.         case 'ofdefPrintPreview':
  3523.             L_ofdefPrintPreview_TEXT='(print preview: A view of a document as it will appear when you print it.)';
  3524.             sTemp=L_ofdefPrintPreview_TEXT;
  3525.             break;
  3526.         case 'ofdefProgID':
  3527.             L_ofdefProgID_TEXT='(programmatic identifier (ProgID): An identifier in the form OLEServerName.ObjectName (for example, Excel.Sheet or PowerPoint.Slide) that\'s used by the Windows registry to uniquely identify an object.)';
  3528.             sTemp=L_ofdefProgID_TEXT;
  3529.             break;
  3530.         case 'ofdefProperty':
  3531.             L_ofdefProperty_TEXT='(property: A named attribute of a control, a field, or an object that you set to define one of the object\'s characteristics (such as size, color, or screen location) or an aspect of its behavior (such as whether the object is hidden).)';
  3532.             sTemp=L_ofdefProperty_TEXT;
  3533.             break;
  3534.         case 'ofdefQuestionMarkPointer':
  3535.             L_ofdefQuestionMarkPointer_TEXT='(question-mark pointer: Use the question-mark pointer to get context-sensitive Help on toolbar buttons, dialog box options, tools in the toolbox, and other parts of the window.)';
  3536.             sTemp=L_ofdefQuestionMarkPointer_TEXT;
  3537.             break;
  3538.         case 'ofdefReadonly':
  3539.             L_ofdefReadonly_TEXT='(read-only: A setting that allows a file to be read or copied, but not changed or saved. If you change a read-only file, you can save your changes only if you give the document a new name.)';
  3540.             sTemp=L_ofdefReadonly_TEXT;
  3541.             break;
  3542.         case 'ofdefRecord':
  3543.             L_ofdefRecord_TEXT='(record: A collection of data about a person, a place, an event, or some other item. Records are the logical equivalents of rows in a table.)';
  3544.             sTemp=L_ofdefRecord_TEXT;
  3545.             break;
  3546.         case 'ofdefTWAIN':
  3547.             L_ofdefTWAIN_TEXT='(TWAIN: A cross-platform interface for acquiring electronic images that have been captured by scanners, digital cameras, and still-frame video capture boards.)';
  3548.             sTemp=L_ofdefTWAIN_TEXT;
  3549.             break;
  3550.         case 'ofdefVisualBasicEditor':
  3551.             L_ofdefVisualBasicEditor_TEXT='(Microsoft Visual Basic Editor: An environment in which you can edit macros that you\'ve recorded and write new macros and Visual Basic for Applications programs.)';
  3552.             sTemp=L_ofdefVisualBasicEditor_TEXT;
  3553.             break;
  3554.         case 'ofdefWebComponent':
  3555.             L_ofdefWebComponent_TEXT='(Microsoft Office Web Components: Interactive components, such as worksheets, charts, and PivotTable lists on Web pages that facilitate data analysis. To use these components, you must have a Microsoft Office license.)';
  3556.             sTemp=L_ofdefWebComponent_TEXT;
  3557.             break;
  3558.         case 'ofDelimitedText':
  3559.             L_ofDelimitedText_TEXT='(delimited text file: A file containing data where individual field values are separated by a character, such as a comma or a tab.)';
  3560.             sTemp=L_ofDelimitedText_TEXT;
  3561.             break;
  3562.         case 'ofDesignTime':
  3563.             L_ofDesignTime_TEXT='(design time: The time during which you create and modify the design of the objects and code in your application. For example, you design custom dialog boxes and controls. In contrast, during run time, you interact with the program as a user would.)';
  3564.             sTemp=L_ofDesignTime_TEXT;
  3565.             break;
  3566.         case 'ofDestination':
  3567.             L_ofDestination_TEXT='(destination: General term for the name of the element you go to from a hyperlink.)';
  3568.             sTemp=L_ofDestination_TEXT;
  3569.             break;
  3570.         case 'ofDestinationFile':
  3571.             L_ofDestinationFile_TEXT='(destination file: The file that a linked or embedded object is inserted into. The source file contains the information that is used to create the object. When you change information in a destination file, the information is not updated in the source file.)';
  3572.             sTemp=L_ofDestinationFile_TEXT;
  3573.             break;
  3574.         case 'OfDigitalDashboard':
  3575.             L_OfDigitalDashboard_TEXT='(digital dashboard: A user-configurable Web page that functions as an information portal. A digital dashboard consolidates personal, team, corporate, and external information and provides single-click access to database, analytical, and workgroup tools.)';
  3576.             sTemp=L_OfDigitalDashboard_TEXT;
  3577.             break;
  3578.         case 'ofdimension':
  3579.             L_ofdimension_TEXT='(dimension: An OLAP structure that organizes data into levels, such as Country/Region/City for a Geography dimension. In a PivotTable or PivotChart report, each dimension becomes a set of fields where you can expand and collapse detail.)';
  3580.             sTemp=L_ofdimension_TEXT;
  3581.             break;
  3582.         case 'ofdiscussion':
  3583.             L_ofdiscussion_TEXT='(discussion: A feature of a Web site that enables site visitors to post and reply to conversational topics. Visitors can post stand-alone discussions or they can associate conversational topics with the content of a document.)';
  3584.             sTemp=L_ofdiscussion_TEXT;
  3585.             break;
  3586.         case 'OfDiscussionBoard':
  3587.             L_OfDiscussionBoard_TEXT='(discussion board: A Web site component that enables users to participate in topics of discussion by posting and replying to comments. Requires a Web server that is running Microsoft\'s SharePoint Team Services.)';
  3588.             sTemp=L_OfDiscussionBoard_TEXT;
  3589.             break;
  3590.         case 'OfDiscussionComment':
  3591.             L_OfDiscussionComment_TEXT='(discussion comment: A remark or topic of discussion that is associated with a Web page or Microsoft Office file and is stored on a discussion server.)';
  3592.             sTemp=L_OfDiscussionComment_TEXT;
  3593.             break;
  3594.         case 'ofdiscussiongroup':
  3595.             L_ofdiscussiongroup_TEXT='(discussion group: A place on the Internet where people interact by posting and reading messages about topics that are of interest to them and the rest of a community.)';
  3596.             sTemp=L_ofdiscussiongroup_TEXT;
  3597.             break;
  3598.         case 'OfDiscussionRights':
  3599.             L_OfDiscussionRights_TEXT='(discussion rights: Rights that allow a user to view, add, modify, and close discussion comments that are attached to a Web page or document.)';
  3600.             sTemp=L_OfDiscussionRights_TEXT;
  3601.             break;
  3602.         case 'OfDiscussionServer':
  3603.             L_OfDiscussionServer_TEXT='(discussion server: A computer that stores discussion text and information about the location of the file being discussed.)';
  3604.             sTemp=L_OfDiscussionServer_TEXT;
  3605.             break;
  3606.         case 'ofdistributedannotationsystemdas':
  3607.             L_ofdistributedannotationsystemdas_TEXT='(Distributed Annotation System (DAS): License server, a single client integrates/calls on information from multiple DAS servers)';
  3608.             sTemp=L_ofdistributedannotationsystemdas_TEXT;
  3609.             break;
  3610.         case 'ofdistributedauthoringandversioningdav':
  3611.             L_ofdistributedauthoringandversioningdav_TEXT='(Distributed Authoring and Versioning (DAV): Servers that allow collaborative editing and managing of files.)';
  3612.             sTemp=L_ofdistributedauthoringandversioningdav_TEXT;
  3613.             break;
  3614.         case 'ofdocked':
  3615.             L_ofdocked_TEXT='(docked: Fixed to the top, bottom, or side of the window. You can dock a task pane, the toolbox, the menu bar, and all toolbars.)';
  3616.             sTemp=L_ofdocked_TEXT;
  3617.             break;
  3618.         case 'OfDocumentLibrary':
  3619.             L_OfDocumentLibrary_TEXT='(document library: A folder where a collection of files is shared and the files often use the same template. Each file in a library is associated with user-defined information that is displayed in the content listing for that library.)';
  3620.             sTemp=L_OfDocumentLibrary_TEXT;
  3621.             break;
  3622.         case 'ofdocumentobjectmodeldom':
  3623.             L_ofdocumentobjectmodeldom_TEXT='(Document Object Model (DOM): A World Wide Web Consortium specification that describes the structure of dynamic HTML and XML documents in a way that allows them to be manipulated through a Web browser.)';
  3624.             sTemp=L_ofdocumentobjectmodeldom_TEXT;
  3625.             break;
  3626.         case 'ofdocumentworkspace':
  3627.             L_ofdocumentworkspace_TEXT='(Document Workspace: A Microsoft Windows SharePoint Services site that is created for collaborating on one or more documents.)';
  3628.             sTemp=L_ofdocumentworkspace_TEXT;
  3629.             break;
  3630.         case 'ofDoubleDataType':
  3631.             L_ofDoubleDataType_TEXT='(Double data type: A fundamental data type that holds double-precision floating-point numbers. It\'s stored as a 64-bit number ranging in value from approximately -1.797E308 to -4.940E-324 (negative), from 4.94E-324 to 1.797E308 (positive), and 0.)';
  3632.             sTemp=L_ofDoubleDataType_TEXT;
  3633.             break;
  3634.         case 'ofdrawing':
  3635.             L_ofdrawing_TEXT='(drawing: Any ink that you add to a file that is not recognized as handwriting.)';
  3636.             sTemp=L_ofdrawing_TEXT;
  3637.             break;
  3638.         case 'OfDrawingCanvas':
  3639.             L_OfDrawingCanvas_TEXT='(drawing canvas: An area on which you can draw multiple shapes. Because the shapes are contained within the drawing canvas, they can be moved and resized as a unit.)';
  3640.             sTemp=L_OfDrawingCanvas_TEXT;
  3641.             break;
  3642.         case 'ofdrawingobject':
  3643.             L_ofdrawingobject_TEXT='(drawing object: Any graphic you draw or insert, which can be changed and enhanced. Drawing objects include AutoShapes, curves, lines, and WordArt.)';
  3644.             sTemp=L_ofdrawingobject_TEXT;
  3645.             break;
  3646.         case 'ofDynamicDataExchangedde':
  3647.             L_ofDynamicDataExchangedde_TEXT='(Dynamic Data Exchange (DDE): An established protocol for exchanging data between Microsoft Windows-based programs.)';
  3648.             sTemp=L_ofDynamicDataExchangedde_TEXT;
  3649.             break;
  3650.         case 'ofembeddedobject':
  3651.             L_ofembeddedobject_TEXT='(embedded object: Information (object) contained in a source file and inserted into a destination file. Once embedded, the object becomes part of the destination file. Changes you make to the embedded object are reflected in the destination file.)';
  3652.             sTemp=L_ofembeddedobject_TEXT;
  3653.             break;
  3654.         case 'ofEmbeddedstylesheet':
  3655.             L_ofEmbeddedstylesheet_TEXT='(embedded style sheet: A cascading style sheet that is embedded on a page. Styles in an embedded style sheet can be applied only to the page containing the style sheet and will extend or override styles in any external style sheet linked to the page.)';
  3656.             sTemp=L_ofEmbeddedstylesheet_TEXT;
  3657.             break;
  3658.         case 'ofempty':
  3659.             L_ofempty_TEXT='(Empty: The state of an uninitialized <b>Variant</b> variable (which returns a <b>VarType</b> of 0). Not to be confused with <b>Null</b> (a variable state indicating invalid data), variables with zero-length strings (\" \"), or numeric variables equal zero.)';
  3660.             sTemp=L_ofempty_TEXT;
  3661.             break;
  3662.         case 'ofenumerateddatatype':
  3663.             L_ofenumerateddatatype_TEXT='(enumerated data type: A data type consisting of a sequence of named values given in a particular order.)';
  3664.             sTemp=L_ofenumerateddatatype_TEXT;
  3665.             break;
  3666.         case 'OfErrorBars':
  3667.             L_OfErrorBars_TEXT='(error bars: Usually used in statistical or scientific data, error bars show potential error or degree of uncertainty relative to each data marker in a series.)';
  3668.             sTemp=L_OfErrorBars_TEXT;
  3669.             break;
  3670.         case 'ofEvent':
  3671.             L_ofEvent_TEXT='(event: An action recognized by an object, such as a mouse click or key press, for which you can define a response. An event can be caused by a user action or a Visual Basic statement, or it can be triggered by the system.)';
  3672.             sTemp=L_ofEvent_TEXT;
  3673.             break;
  3674.         case 'ofEventProcedure':
  3675.             L_ofEventProcedure_TEXT='(event procedure: A procedure that is automatically executed in response to an event initiated by the user or program code, or that is triggered by the system.)';
  3676.             sTemp=L_ofEventProcedure_TEXT;
  3677.             break;
  3678.         case 'ofEventProperty':
  3679.             L_ofEventProperty_TEXT='(event property: A named attribute of a control, form, report, data access page, or section you use to respond to an associated event. You can run a procedure or macro when an event occurs by setting the related event property.)';
  3680.             sTemp=L_ofEventProperty_TEXT;
  3681.             break;
  3682.         case 'ofexefile':
  3683.             L_ofexefile_TEXT='(.exe file: A file that contains an executable program that runs on a computer when the file name is double-clicked.)';
  3684.             sTemp=L_ofexefile_TEXT;
  3685.             break;
  3686.         case 'OfExtensibleMarkupLanguage':
  3687.             L_OfExtensibleMarkupLanguage_TEXT='(Extensible Markup Language (XML): A condensed form of Standard Generalized Markup Language (SGML) that enables developers to create customized tags that offer flexibility in organizing and presenting  information.)';
  3688.             sTemp=L_OfExtensibleMarkupLanguage_TEXT;
  3689.             break;
  3690.         case 'OfExtensibleStyleLanguage':
  3691.             L_OfExtensibleStyleLanguage_TEXT='(Extensible Stylesheet Language (XSL): An XML vocabulary that is used to transform XML data to another form, such as HTML, by means of a style sheet that defines presentation rules.)';
  3692.             sTemp=L_OfExtensibleStyleLanguage_TEXT;
  3693.             break;
  3694.         case 'ofextensiblestylesheetlanguagexsl':
  3695.             L_ofextensiblestylesheetlanguagexsl_TEXT='(Extensible Stylesheet Language (XSL): An XML vocabulary that is used to transform XML data to another form, such as HTML, by means of a style sheet that defines presentation rules.)';
  3696.             sTemp=L_ofextensiblestylesheetlanguagexsl_TEXT;
  3697.             break;
  3698.         case 'ofextensivestylesheetlanguagetransformation':
  3699.             L_ofextensivestylesheetlanguagetransformation_TEXT='(XSL Transformation (XSLT): A file that is used to transform XML documents into other types of documents, such as HTML or XML. It is designed for use as part of XSL.)';
  3700.             sTemp=L_ofextensivestylesheetlanguagetransformation_TEXT;
  3701.             break;
  3702.         case 'offield':
  3703.             L_offield_TEXT='(field: An element of a table that contains a specific item of information, such as a last name. A Title field might contain Mr. or Ms. Databases such as Microsoft SQL Server refer to fields as columns.)';
  3704.             sTemp=L_offield_TEXT;
  3705.             break;
  3706.         case 'offieldcode':
  3707.             L_offieldcode_TEXT='(field code: Placeholder text that shows where specified information from your data source will appear; the elements in a field that generate a field\'s result. The field code includes the field characters, field type, and instructions.)';
  3708.             sTemp=L_offieldcode_TEXT;
  3709.             break;
  3710.         case 'offileformat':
  3711.             L_offileformat_TEXT='(file format: The way in which information is stored in a file so that a program can open and save the file. A file\'s structure defines how it is stored and displayed. File format is indicated by a three-letter extension after the file name, such as .doc.)';
  3712.             sTemp=L_offileformat_TEXT;
  3713.             break;
  3714.         case 'offloatingtoolbar':
  3715.             L_offloatingtoolbar_TEXT='(floating toolbar: A toolbar that is not attached to the edge of the program window. You can change the shape of some floating toolbars.)';
  3716.             sTemp=L_offloatingtoolbar_TEXT;
  3717.             break;
  3718.         case 'offocus':
  3719.             L_offocus_TEXT='(focus: The ability to receive user input through mouse or keyboard actions or the <b>SetFocus</b> method. Focus can be set by the user or by the application. The object that has focus is usually indicated by a highlighted caption or title bar.)';
  3720.             sTemp=L_offocus_TEXT;
  3721.             break;
  3722.         case 'offollowedhyperlink':
  3723.             L_offollowedhyperlink_TEXT='(followed hyperlink: A hyperlink to a destination you have visited. Once you follow a hyperlink to its destination, the hyperlink changes color.)';
  3724.             sTemp=L_offollowedhyperlink_TEXT;
  3725.             break;
  3726.         case 'offont':
  3727.             L_offont_TEXT='(font: A graphic design applied to all numerals, symbols, and alphabetic characters. Also called type or typeface. Arial and Courier New are examples of fonts. Fonts usually come in different sizes, such as 10 point, and various styles, such as bold.)';
  3728.             sTemp=L_offont_TEXT;
  3729.             break;
  3730.         case 'offormattingtoolbar':
  3731.             L_offormattingtoolbar_TEXT='(Formatting toolbar: A toolbar with buttons and options used to apply text formatting. To display the toolbar, point to <b>Toolbars </b>on the <b>View </b>menu, and then click <b>Formatting</b>.)';
  3732.             sTemp=L_offormattingtoolbar_TEXT;
  3733.             break;
  3734.         case 'offramespage':
  3735.             L_offramespage_TEXT='(frames page: A Web page that divides a Web browser window into different scrollable areas that can independently display several Web pages. One window can remain unchanged, while the other windows change based on hyperlinks that the user selects.)';
  3736.             sTemp=L_offramespage_TEXT;
  3737.             break;
  3738.         case 'OfFreeform':
  3739.             L_OfFreeform_TEXT='(freeform: Any shape you draw by using the <b>Curve</b>, <b>Freeform</b>, and <b>Scribble </b>tools. Freeform shapes can include straight lines and freehand curves. They can be drawn opened or closed and can be edited.)';
  3740.             sTemp=L_OfFreeform_TEXT;
  3741.             break;
  3742.         case 'offtp':
  3743.             L_offtp_TEXT='(FTP: A communication protocol that makes it possible for a user to transfer files between remote locations on a network. This protocol also allows users to use FTP commands, such as listing files and folders, to work with files on a remote location.)';
  3744.             sTemp=L_offtp_TEXT;
  3745.             break;
  3746.         case 'ofFunctionProcedure':
  3747.             L_ofFunctionProcedure_TEXT='(Function procedure: A procedure that returns a value and that can be used in an expression. You declare a function with the <b>Function</b> statement and end it with the <b>End Function</b> statement.)';
  3748.             sTemp=L_ofFunctionProcedure_TEXT;
  3749.             break;
  3750.         case 'OfGainAdjustment':
  3751.             L_OfGainAdjustment_TEXT='(gain adjustment: A microphone feature that allows your input to be amplified so that it is made louder for use by the system.)';
  3752.             sTemp=L_OfGainAdjustment_TEXT;
  3753.             break;
  3754.         case 'OfGeneralDiscussion':
  3755.             L_OfGeneralDiscussion_TEXT='(general discussion: Discussion comments that are associated with a whole document, rather than any particular part of  the document. General discussions are displayed in the discussion pane.)';
  3756.             sTemp=L_OfGeneralDiscussion_TEXT;
  3757.             break;
  3758.         case 'ofglobal':
  3759.             L_ofglobal_TEXT='(global: Pertaining to an entire document, file, or program rather than to a restricted segment of it.)';
  3760.             sTemp=L_ofglobal_TEXT;
  3761.             break;
  3762.         case 'ofgopher':
  3763.             L_ofgopher_TEXT='(Gopher: An interface through which you can gain access to resources on the Internet. Gopher servers contain menus with categories of information; menus function the same as hyperlinks in World Wide Web documents. Gopher servers URLs begin with gopher:/.)';
  3764.             sTemp=L_ofgopher_TEXT;
  3765.             break;
  3766.         case 'ofgradient':
  3767.             L_ofgradient_TEXT='(gradient: A gradual progression of colors and shades, usually from one color to another color, or from one shade to another shade of the same color.)';
  3768.             sTemp=L_ofgradient_TEXT;
  3769.             break;
  3770.         case 'ofgrid':
  3771.             L_ofgrid_TEXT='(grid: A set of intersecting lines used to align objects.)';
  3772.             sTemp=L_ofgrid_TEXT;
  3773.             break;
  3774.         case 'OfGridlines':
  3775.             L_OfGridlines_TEXT='(gridlines: Lines you can add to a chart you make it easier to view and evaluate data. Gridlines extend from the tick marks on an axis across the plot area.)';
  3776.             sTemp=L_OfGridlines_TEXT;
  3777.             break;
  3778.         case 'ofgroup':
  3779.             L_ofgroup_TEXT='(group: A collection of objects that behave as one for the purpose of moving, resizing, or rotating them. A group can be composed of multiple sets of groups.)';
  3780.             sTemp=L_ofgroup_TEXT;
  3781.             break;
  3782.         case 'ofhandwriting':
  3783.             L_ofhandwriting_TEXT='(handwriting: Words that you write in ink. These words are not converted into typed text.)';
  3784.             sTemp=L_ofhandwriting_TEXT;
  3785.             break;
  3786.         case 'ofhangingindent':
  3787.             L_ofhangingindent_TEXT='(hanging indent: Paragraph formatting in which the second and subsequent lines of a paragraph are indented more than the first line. Common uses for the hanging indent are bulleted and numbered lists.)';
  3788.             sTemp=L_ofhangingindent_TEXT;
  3789.             break;
  3790.         case 'ofheaderandfooter':
  3791.             L_ofheaderandfooter_TEXT='(header and footer: A header, which can consist of text or graphics, appears at the top of every page in a section. A footer appears at the bottom of every page. Headers and footers often contain page numbers, chapter titles, dates, and author names.)';
  3792.             sTemp=L_ofheaderandfooter_TEXT;
  3793.             break;
  3794.         case 'ofhomepage':
  3795.             L_ofhomepage_TEXT='(home page: Main page of a Web site. Usually has hyperlinks to other pages, both within and outside of the site. One Web site can contain many home pages. For example, the Microsoft home page contains a Products home page, which contains other home pages.)';
  3796.             sTemp=L_ofhomepage_TEXT;
  3797.             break;
  3798.         case 'ofhotspot':
  3799.             L_ofhotspot_TEXT='(hot spot: An area on an object containing a hyperlink. An entire object can be a single hot spot, or an object can contain multiple hot spots. A picture with hot spots is called an image map.)';
  3800.             sTemp=L_ofhotspot_TEXT;
  3801.             break;
  3802.         case 'ofhowFileTransferProtocolFTP':
  3803.             L_ofhowFileTransferProtocolFTP_TEXT='(FTP: A communication protocol that makes it possible for a user to transfer files between remote locations on a network. This protocol also allows users to use FTP commands, such as listing files and folders, to work with files on a remote location.)';
  3804.             sTemp=L_ofhowFileTransferProtocolFTP_TEXT;
  3805.             break;
  3806.         case 'ofhowRootDirectory':
  3807.             L_ofhowRootDirectory_TEXT='(root folder: The folder on a drive from which all other folders branch. The root folder\'s name consists of a single backslash character (\\). For example, on drive C, this folder would be represented in the file system as C:\\.)';
  3808.             sTemp=L_ofhowRootDirectory_TEXT;
  3809.             break;
  3810.         case 'ofhtml':
  3811.             L_ofhtml_TEXT='(HTML: The standard markup language used for documents on the World Wide Web. HTML uses tags to indicate how Web browsers should display page elements such as text and graphics and how to respond to user actions.)';
  3812.             sTemp=L_ofhtml_TEXT;
  3813.             break;
  3814.         case 'ofhtmltag':
  3815.             L_ofhtmltag_TEXT='(HTML tag: A text string used in HTML to identify a page element\'s type, format, and appearance. FrontPage automatically creates HTML tags to represent each element on a page.)';
  3816.             sTemp=L_ofhtmltag_TEXT;
  3817.             break;
  3818.         case 'ofHTTP':
  3819.             L_ofHTTP_TEXT='(HTTP: Internet protocol that delivers information on the World Wide Web. Makes it possible for a user with a client program to enter a URL (or click a hyperlink) and retrieve text, graphics, sound, and other digital information from a Web server.)';
  3820.             sTemp=L_ofHTTP_TEXT;
  3821.             break;
  3822.         case 'ofHyperlink':
  3823.             L_ofHyperlink_TEXT='(hyperlink: Colored and underlined text or a graphic that you click to go to a file, a location in a file, a Web page on the World Wide Web, or a Web page on an intranet. Hyperlinks can also go to newsgroups and to Gopher, Telnet, and FTP sites.)';
  3824.             sTemp=L_ofHyperlink_TEXT;
  3825.             break;
  3826.         case 'ofHyperlinkAddress':
  3827.             L_ofHyperlinkAddress_TEXT='(address: The path to an object, document, file, page, or other destination. An address can be a URL (Web address) or a UNC path (network address), and can include a specific location within a file, such as a Word bookmark or an Excel cell range.)';
  3828.             sTemp=L_ofHyperlinkAddress_TEXT;
  3829.             break;
  3830.         case 'ofHyperlinkBase':
  3831.             L_ofHyperlinkBase_TEXT='(hyperlink base: When a relative link is based on a path you specify (the first part of the path that is shared by the file containing the hyperlink and the destination file), that path is the hyperlink base.)';
  3832.             sTemp=L_ofHyperlinkBase_TEXT;
  3833.             break;
  3834.         case 'ofhypertextreferencehref':
  3835.             L_ofhypertextreferencehref_TEXT='(hypertext reference (HREF): An attribute, in an HTML document, that defines a link to another location within a document, a document on the Web, or an e-mail address.)';
  3836.             sTemp=L_ofhypertextreferencehref_TEXT;
  3837.             break;
  3838.         case 'ofImagemap':
  3839.             L_ofImagemap_TEXT='(image map: A graphic containing one or more invisible regions, called hot spots, which are associated with hyperlinks. For example, a geographical map could be made into an image map by assigning hot spots to each region of interest on the map.)';
  3840.             sTemp=L_ofImagemap_TEXT;
  3841.             break;
  3842.         case 'ofImmediateWindow':
  3843.             L_ofImmediateWindow_TEXT='(Immediate window: A window in the Visual Basic Editor in which you can run individual lines of Visual Basic code, usually for the purpose of debugging. In the Immediate window, expressions are evaluated immediately.)';
  3844.             sTemp=L_ofImmediateWindow_TEXT;
  3845.             break;
  3846.         case 'OfInk':
  3847.             L_OfInk_TEXT='(ink: The writing or drawing strokes made with a tablet pen or mouse.)';
  3848.             sTemp=L_OfInk_TEXT;
  3849.             break;
  3850.         case 'OfInlineDiscussion':
  3851.             L_OfInlineDiscussion_TEXT='(inline discussion: Discussion comments that are associated with a particular paragraph, image or table. In Web browsers, inline discussions are displayed in the body of the document; in a Microsoft Word document, they are displayed in the discussion)';
  3852.             sTemp=L_OfInlineDiscussion_TEXT;
  3853.             break;
  3854.         case 'ofInnerJoin':
  3855.             L_ofInnerJoin_TEXT='(inner join: A join where records in two tables are combined in a query\'s results only if values in the joined fields meet a specified condition. In a query, the default join is an inner join that selects records only if values in the joined fields match.)';
  3856.             sTemp=L_ofInnerJoin_TEXT;
  3857.             break;
  3858.         case 'ofintegrateddevelopmentenvironmentide':
  3859.             L_ofintegrateddevelopmentenvironmentide_TEXT='(integrated development environment (IDE): A set of integrated tools for developing software. The tools are generally run from one user interface and consist of a compiler, an editor, and a debugger, among others.)';
  3860.             sTemp=L_ofintegrateddevelopmentenvironmentide_TEXT;
  3861.             break;
  3862.         case 'ofInternet':
  3863.             L_ofInternet_TEXT='(Internet: A worldwide network of thousands of smaller computer networks and millions of commercial, educational, government, and personal computers. The Internet is like an electronic city with virtual libraries, stores, art galleries, and so on.)';
  3864.             sTemp=L_ofInternet_TEXT;
  3865.             break;
  3866.         case 'ofInternetServiceProvider':
  3867.             L_ofInternetServiceProvider_TEXT='(ISP: A business that provides access to the Internet for such things as electronic mail, chat rooms, or use of the World Wide Web. Some ISPs are multinational, offering access in many locations, while others are limited to a specific region.)';
  3868.             sTemp=L_ofInternetServiceProvider_TEXT;
  3869.             break;
  3870.         case 'ofIntranet':
  3871.             L_ofIntranet_TEXT='(intranet: A network within an organization that uses Internet technologies (such as the HTTP or FTP protocol). By using hyperlinks, you can explore objects, documents, pages, and other destinations on the intranet.)';
  3872.             sTemp=L_ofIntranet_TEXT;
  3873.             break;
  3874.         case 'ofjoin':
  3875.             L_ofjoin_TEXT='(join: An association between a field in one table or query and a field of the same data type in another table or query. Joins tell the program how data is related. Records that don\'t match may be included or excluded, depending on the type of join.)';
  3876.             sTemp=L_ofjoin_TEXT;
  3877.             break;
  3878.         case 'ofjscript':
  3879.             L_ofjscript_TEXT='(JScript: An interpreted, object-based scripting language that borrows from C, C++, and Java. It is the Microsoft implementation of the ECMA 262 language specification.)';
  3880.             sTemp=L_ofjscript_TEXT;
  3881.             break;
  3882.         case 'ofkerning':
  3883.             L_ofkerning_TEXT='(kerning: The adjustment of the spacing between two characters to create the appearance of even spacing, fit text to a given space, and adjust line breaks.)';
  3884.             sTemp=L_ofkerning_TEXT;
  3885.             break;
  3886.         case 'ofKnowledgeBase':
  3887.             L_ofKnowledgeBase_TEXT='(KB: Primary source of product information for Microsoft support engineers and customers. This comprehensive collection of articles, updated daily, contains detailed how-to information, answers to technical-support questions, and known issues.)';
  3888.             sTemp=L_ofKnowledgeBase_TEXT;
  3889.             break;
  3890.         case 'OfLan':
  3891.             L_OfLan_TEXT='(LAN: A computer network technology designed to connect computers separated by a short distance. A local area network (LAN) can be connected to the Internet and can also be configured as an intranet.)';
  3892.             sTemp=L_OfLan_TEXT;
  3893.             break;
  3894.         case 'oflevel':
  3895.             L_oflevel_TEXT='(level: A part of an OLAP dimension. Within a dimension, data is organized into lower and higher levels of detail, such as Year, Quarter, Month, and Day levels in a Time dimension.)';
  3896.             sTemp=L_oflevel_TEXT;
  3897.             break;
  3898.         case 'OfLinkBar':
  3899.             L_OfLinkBar_TEXT='(link bar: A collection of graphic or text buttons representing hyperlinks to pages both within your Web site and to external sites.)';
  3900.             sTemp=L_OfLinkBar_TEXT;
  3901.             break;
  3902.         case 'oflinkedobject':
  3903.             L_oflinkedobject_TEXT='(linked object: An object that is created in a source file and inserted into a destination file, while maintaining a connection between the two files. The linked object in the destination file can be updated when the source file is updated.)';
  3904.             sTemp=L_oflinkedobject_TEXT;
  3905.             break;
  3906.         case 'OfListInteractiveList':
  3907.             L_OfListInteractiveList_TEXT='(list, interactive list: A Web site component that stores and displays information that users can add to by using their browsers. Requires a Web server that is running Microsoft Windows SharePoint Services.)';
  3908.             sTemp=L_OfListInteractiveList_TEXT;
  3909.             break;
  3910.         case 'OfMappedDataField':
  3911.             L_OfMappedDataField_TEXT='(mapped data field: A field that represents commonly used information, such as \"First Name.\" If a data source contains a \"First Name\" field or variation, such as \"FName,\" the data source field automatically maps to the corresponding mapped data field.)';
  3912.             sTemp=L_OfMappedDataField_TEXT;
  3913.             break;
  3914.         case 'ofmetadata':
  3915.             L_ofmetadata_TEXT='(metadata: Data that describes other data. For example, the words in a document are data; the word count is an example of metadata.)';
  3916.             sTemp=L_ofmetadata_TEXT;
  3917.             break;
  3918.         case 'ofmicrosoftdevelopernetworkmsdn':
  3919.             L_ofmicrosoftdevelopernetworkmsdn_TEXT='(MSDN: A Microsoft Web site (and subscription program) that provides developers with the latest tools as well as information, code samples, and training materials for Microsoft development tools. (http://msdn.microsoft.com))';
  3920.             sTemp=L_ofmicrosoftdevelopernetworkmsdn_TEXT;
  3921.             break;
  3922.         case 'ofmicrosoftofficedocumentimagingformatmdi':
  3923.             L_ofmicrosoftofficedocumentimagingformatmdi_TEXT='(Microsoft Office Document Imaging Format (MDI): A high resolution, tag-based graphics format, based on the Tagged Image File Format (TIFF) used for digital graphics.)';
  3924.             sTemp=L_ofmicrosoftofficedocumentimagingformatmdi_TEXT;
  3925.             break;
  3926.         case 'OfMicrosoftSqlServerDatabase':
  3927.             L_OfMicrosoftSqlServerDatabase_TEXT='(Microsoft SQL Server database: A database in Microsoft SQL Server, it consists of tables, views, indexes, stored procedures, functions, and triggers.)';
  3928.             sTemp=L_OfMicrosoftSqlServerDatabase_TEXT;
  3929.             break;
  3930.         case 'OfMIDI':
  3931.             L_OfMIDI_TEXT='(Musical Instrument Digital Interface (MIDI): A communications protocol that allows electronic musical instruments to interact with each other using digital signals.)';
  3932.             sTemp=L_OfMIDI_TEXT;
  3933.             break;
  3934.         case 'OfMPEG':
  3935.             L_OfMPEG_TEXT='(Motion Picture Experts Group (MPEG): A lossy compression system with two flavors of compression. MPEG 1 has a limit of 240 lines of horizontal resolution; MPEG 2 can provide a wide enough bandwidth for High Definition Television (HDTV).)';
  3936.             sTemp=L_OfMPEG_TEXT;
  3937.             break;
  3938.         case 'OfMultipurposeInternetMailExtensionsHtml':
  3939.             L_OfMultipurposeInternetMailExtensionsHtml_TEXT='(Single File Web Page (MHTML): An HTML document saved in MHTML format, which integrates inline graphics, applets, linked documents, and other supporting items referenced in the document.)';
  3940.             sTemp=L_OfMultipurposeInternetMailExtensionsHtml_TEXT;
  3941.             break;
  3942.         case 'OfNaturalLanguageSearching':
  3943.             L_OfNaturalLanguageSearching_TEXT='(natural language searching: A search method that lets you direct your search using conversational language. This enables you to give search instructions such as \"Find all appointments for today.\")';
  3944.             sTemp=L_OfNaturalLanguageSearching_TEXT;
  3945.             break;
  3946.         case 'OfNetworkPlaces':
  3947.             L_OfNetworkPlaces_TEXT='(Network Places: A folder on a network file server, Web server, or Exchange 2000 server. You can create a shortcut to a Network Place to work with files there. Some Network Places, such as document libraries, have features not available with local folders.)';
  3948.             sTemp=L_OfNetworkPlaces_TEXT;
  3949.             break;
  3950.         case 'OfNewFileTaskPane':
  3951.             L_OfNewFileTaskPane_TEXT='(<b>New <EM>File </EM></b>task pane: A pane in Office applications that provides commonly used commands for opening and creating files. The task pane title differs for each Office application. For example, you\'ll see \"New Document\" in Word.)';
  3952.             sTemp=L_OfNewFileTaskPane_TEXT;
  3953.             break;
  3954.         case 'ofobjectmodel':
  3955.             L_ofobjectmodel_TEXT='(object model: A hierarchical library of objects and collections that represents the content and functionality of an application. Objects and collections have properties, methods, and events that can be used to manipulate and interact with an application.)';
  3956.             sTemp=L_ofobjectmodel_TEXT;
  3957.             break;
  3958.         case 'ofobjectmodeldiagram':
  3959.             L_ofobjectmodeldiagram_TEXT='(object model diagram: A graphical representation of the objects and collections that are contained within a specified object model.)';
  3960.             sTemp=L_ofobjectmodeldiagram_TEXT;
  3961.             break;
  3962.         case 'ofocr':
  3963.             L_ofocr_TEXT='(OCR: Translates images of text, such as scanned documents, into actual text characters. Also known as text recognition.)';
  3964.             sTemp=L_ofocr_TEXT;
  3965.             break;
  3966.         case 'OfOfficeDataConnectionFile':
  3967.             L_OfOfficeDataConnectionFile_TEXT='(Office Data Connection (ODC) file: A file that stores information about a connection to a data source (such as an OLE DB data source) and the data associated with the connection.)';
  3968.             sTemp=L_OfOfficeDataConnectionFile_TEXT;
  3969.             break;
  3970.         case 'OfOfficeDesigner':
  3971.             L_OfOfficeDesigner_TEXT='(Microsoft Solution Designer: A development environment for creating and customizing team Web sites and other Web-based workgroup programs that run on Microsoft Exchange 2000 and Microsoft\'s SharePoint Portal Server.)';
  3972.             sTemp=L_OfOfficeDesigner_TEXT;
  3973.             break;
  3974.         case 'OfOleDb':
  3975.             L_OfOleDb_TEXT='(OLE DB: A component database architecture that implements efficient network and internet access to many types of data sources, including relational data, mail files, flat files, and spreadsheets.)';
  3976.             sTemp=L_OfOleDb_TEXT;
  3977.             break;
  3978.         case 'OfOrganizationChart':
  3979.             L_OfOrganizationChart_TEXT='(Organizational chart: A diagram that is used to show hierarchical relationships; for example, company management and employee structures.)';
  3980.             sTemp=L_OfOrganizationChart_TEXT;
  3981.             break;
  3982.         case 'ofparameter':
  3983.             L_ofparameter_TEXT='(parameter: A value that is assigned to a variable at the beginning of an operation or before an expression is evaluated by a program. A parameter can be text, a number, or an argument name assigned to another value.)';
  3984.             sTemp=L_ofparameter_TEXT;
  3985.             break;
  3986.         case 'ofpermissionpolicy':
  3987.             L_ofpermissionpolicy_TEXT='(permission policy: An approach to restricting permission for a given document, workbook, presentation, or message. The policy defines which Office features are available, which information can be accessed, and what level of editing is allowed.)';
  3988.             sTemp=L_ofpermissionpolicy_TEXT;
  3989.             break;
  3990.         case 'OfPicture':
  3991.             L_OfPicture_TEXT='(picture: A file (such as a metafile) that you can ungroup and manipulate as two or more objects or a file that stays as a single object (such as bitmaps).)';
  3992.             sTemp=L_OfPicture_TEXT;
  3993.             break;
  3994.         case 'OfPivottableList':
  3995.             L_OfPivottableList_TEXT='(PivotTable list: A Microsoft Office Web Component used to create an interactive list that summarizes and analyzes data, such as database records, from various sources. Users can view the list in a Web browser and change its layout.)';
  3996.             sTemp=L_OfPivottableList_TEXT;
  3997.             break;
  3998.         case 'OfPlaceholders':
  3999.             L_OfPlaceholders_TEXT='(placeholders: Boxes with dotted borders that are part of most slide layouts. These boxes hold title and body text or objects such as charts, tables, and pictures.)';
  4000.             sTemp=L_OfPlaceholders_TEXT;
  4001.             break;
  4002.         case 'OfPlacesBar':
  4003.             L_OfPlacesBar_TEXT='(Places bar: The bar on the left side of certain dialog boxes (such as Open, Save As, or Insert Picture) that contains shortcuts to the My Recent Documents, Desktop, My Documents, My Computer, and My Network Places folders.)';
  4004.             sTemp=L_OfPlacesBar_TEXT;
  4005.             break;
  4006.         case 'OfPlotArea':
  4007.             L_OfPlotArea_TEXT='(plot area: In a 2-D chart, the area bounded by the axes, including all data series. In a 3-D chart, the area bounded by the axes, including the data series, category names, tick-mark labels, and axis titles.)';
  4008.             sTemp=L_OfPlotArea_TEXT;
  4009.             break;
  4010.         case 'OfPrintLayoutView':
  4011.             L_OfPrintLayoutView_TEXT='(print layout view: A view of a document or other object as it will appear when you print it. For example, items such as headers, footnotes, columns, and text boxes appear in their actual positions.)';
  4012.             sTemp=L_OfPrintLayoutView_TEXT;
  4013.             break;
  4014.         case 'OfPyramidDiagram':
  4015.             L_OfPyramidDiagram_TEXT='(Pyramid diagram: A diagram that is used to show foundation-based relationships.)';
  4016.             sTemp=L_OfPyramidDiagram_TEXT;
  4017.             break;
  4018.         case 'OfRadialDiagram':
  4019.             L_OfRadialDiagram_TEXT='(Radial diagram: A diagram that is used to show relationships of elements to a core element.)';
  4020.             sTemp=L_OfRadialDiagram_TEXT;
  4021.             break;
  4022.         case 'ofrefAVI':
  4023.             L_ofrefAVI_TEXT='(AVI: A Microsoft Windows multimedia file format for sound and videos that uses the Microsoft Resource Interchange File Format (RIFF) specification.)';
  4024.             sTemp=L_ofrefAVI_TEXT;
  4025.             break;
  4026.         case 'ofrefChat':
  4027.             L_ofrefChat_TEXT='(Chat: A Microsoft NetMeeting feature that opens a separate window in which online meeting participants can type and send text messages to each other.)';
  4028.             sTemp=L_ofrefChat_TEXT;
  4029.             break;
  4030.         case 'ofrelativeurl':
  4031.             L_ofrelativeurl_TEXT='(relative URL: A form of URL in which the domain and some or all directory names are omitted, leaving only the document name and extension (and perhaps a partial list of directory names).)';
  4032.             sTemp=L_ofrelativeurl_TEXT;
  4033.             break;
  4034.         case 'ofResolution':
  4035.             L_ofResolution_TEXT='(resolution: The fineness of detail in an image or text produced by a monitor or printer.)';
  4036.             sTemp=L_ofResolution_TEXT;
  4037.             break;
  4038.         case 'ofResultSet':
  4039.             L_ofResultSet_TEXT='(result set: The set of records that results from running a query or applying a filter.)';
  4040.             sTemp=L_ofResultSet_TEXT;
  4041.             break;
  4042.         case 'ofRGB':
  4043.             L_ofRGB_TEXT='(RGB: A system that describes colors as a mixture of red (R), green (G), and blue (B). The color is defined as a set of three values (R,G,B). Using 0 (zero) percent of each color produces black; using 100 percent of all three colors produces white.)';
  4044.             sTemp=L_ofRGB_TEXT;
  4045.             break;
  4046.         case 'ofRGBColor':
  4047.             L_ofRGBColor_TEXT='(RGB color: A color code in HTML represented by its red, green, and blue values. These codes determine the colors for fonts, table borders, backgrounds, and hyperlinks.)';
  4048.             sTemp=L_ofRGBColor_TEXT;
  4049.             break;
  4050.         case 'ofRGBValue':
  4051.             L_ofRGBValue_TEXT='(RGB value: A value returned by the RGB function; specifies a color as a combination of red, green, and blue values as integers from 0 (zero) through 255.)';
  4052.             sTemp=L_ofRGBValue_TEXT;
  4053.             break;
  4054.         case 'ofRichTextFormat':
  4055.             L_ofRichTextFormat_TEXT='(rich text format (RTF): A file type used to transfer formatted text documents between applications, even those that run on different platforms, such as IBM and Macintosh.)';
  4056.             sTemp=L_ofRichTextFormat_TEXT;
  4057.             break;
  4058.         case 'ofRightToLeft':
  4059.             L_ofRightToLeft_TEXT='(right-to-left: Refers to keyboard settings, document views, user interface objects, and the direction in which text is displayed. Arabic and Hebrew are right-to-left languages.)';
  4060.             sTemp=L_ofRightToLeft_TEXT;
  4061.             break;
  4062.         case 'ofRow':
  4063.             L_ofRow_TEXT='(row: In a table, the horizontal arrangement of cells.)';
  4064.             sTemp=L_ofRow_TEXT;
  4065.             break;
  4066.         case 'ofRun':
  4067.             L_ofRun_TEXT='(run: A contiguous piece of text or string of characters sharing the same attributes. All characters in a run have the same directional properties.)';
  4068.             sTemp=L_ofRun_TEXT;
  4069.             break;
  4070.         case 'ofRunTime':
  4071.             L_ofRunTime_TEXT='(run time: The time during which an application is running. During run time, you can interact with an application. In contrast, during design time, you can create and modify the design of the objects and code in your application.)';
  4072.             sTemp=L_ofRunTime_TEXT;
  4073.             break;
  4074.         case 'ofRunTimeError':
  4075.             L_ofRunTimeError_TEXT='(run-time error: An error that can be detected only when an application is running.)';
  4076.             sTemp=L_ofRunTimeError_TEXT;
  4077.             break;
  4078.         case 'ofSaturation':
  4079.             L_ofSaturation_TEXT='(saturation: The amount of color in a specified hue.)';
  4080.             sTemp=L_ofSaturation_TEXT;
  4081.             break;
  4082.         case 'OfSchema':
  4083.             L_OfSchema_TEXT='(schema: A description of a database that defines the attributes of the database, such as tables, fields (columns), and properties.)';
  4084.             sTemp=L_OfSchema_TEXT;
  4085.             break;
  4086.         case 'ofScratchArea':
  4087.             L_ofScratchArea_TEXT='(scratch area: The gray area that appears outside the publication page in Publisher or the background in PhotoDraw. If you\'re not sure where you want to move something, you can drag it onto the scratch area.)';
  4088.             sTemp=L_ofScratchArea_TEXT;
  4089.             break;
  4090.         case 'OfScreenReviewUtilities':
  4091.             L_OfScreenReviewUtilities_TEXT='(screen review utilities: Accessibility aids for people who are blind or have learning disabilities, such as dyslexia. These aids make on-screen information available as synthesized speech or a refreshable Braille display.)';
  4092.             sTemp=L_OfScreenReviewUtilities_TEXT;
  4093.             break;
  4094.         case 'ofScript':
  4095.             L_ofScript_TEXT='(script: A type of computer code used to perform tasks on Web pages, such as incrementing a \"number of visitors\" counter each time there is a new visitor. Web scripts can be written in several script languages. Scripts do not need to be compiled to be run.)';
  4096.             sTemp=L_ofScript_TEXT;
  4097.             break;
  4098.         case 'ofscriptinglanguage':
  4099.             L_ofscriptinglanguage_TEXT='(scripting language: A simple programming language designed to perform special or limited tasks, sometimes associated with a particular application or function.)';
  4100.             sTemp=L_ofscriptinglanguage_TEXT;
  4101.             break;
  4102.         case 'ofSearchEngine':
  4103.             L_ofSearchEngine_TEXT='(search engine: On the Internet, a program that uses keywords supplied by users to search files and documents on the World Wide Web and other resources for information about a specific topic. A search engine can also be dedicated to a specific Web site.)';
  4104.             sTemp=L_ofSearchEngine_TEXT;
  4105.             break;
  4106.         case 'ofSearchPage':
  4107.             L_ofSearchPage_TEXT='(search page: A page from which you can find and go to other Internet sites or to documents on an intranet. Many search pages provide various ways to search, such as by topic, by keyword, or by matches to user queries.)';
  4108.             sTemp=L_ofSearchPage_TEXT;
  4109.             break;
  4110.         case 'OfSelected':
  4111.             L_OfSelected_TEXT='(selected: A toolbar button always has a border around it when it\'s selected, even when the pointer is not resting on the button.)';
  4112.             sTemp=L_OfSelected_TEXT;
  4113.             break;
  4114.         case 'ofSelectionRectangle':
  4115.             L_ofSelectionRectangle_TEXT='(selection rectangle: A rectangle with sizing handles that surrounds a selected object or objects.)';
  4116.             sTemp=L_ofSelectionRectangle_TEXT;
  4117.             break;
  4118.         case 'ofSelector':
  4119.             L_ofSelector_TEXT='(selector: In a cascading style sheet style definition (or style rule), the HTML element linked to a particular set of style properties and values.)';
  4120.             sTemp=L_ofSelector_TEXT;
  4121.             break;
  4122.         case 'ofSelfExtractingFile':
  4123.             L_ofSelfExtractingFile_TEXT='(self-extracting file: An executable file (.exe) that consists of a few smaller files. When you double-click this type of file to run it, it extracts from itself the other files it contains and copies them to the same folder that the .exe is in.)';
  4124.             sTemp=L_ofSelfExtractingFile_TEXT;
  4125.             break;
  4126.         case 'ofServerSideImageMap':
  4127.             L_ofServerSideImageMap_TEXT='(server-side image map: A graphic containing sensitive regions, or \"hot spots,\" that a user can click to follow a hyperlink. A server-side image map requires a script on a Web server that identifies the sensitive regions and their corresponding hyperlinks.)';
  4128.             sTemp=L_ofServerSideImageMap_TEXT;
  4129.             break;
  4130.         case 'ofShortcutKey':
  4131.             L_ofShortcutKey_TEXT='(shortcut key: A function key or key combination, such as F5 or CTRL+A, that you use to carry out a menu command. In contrast, an access key is a key combination, such as ALT+F, that moves the focus to a menu, command, or control.)';
  4132.             sTemp=L_ofShortcutKey_TEXT;
  4133.             break;
  4134.         case 'ofShortcutMenu':
  4135.             L_ofShortcutMenu_TEXT='(shortcut menu: A menu that shows a list of commands relevant to a particular item. To display a shortcut menu, right-click an item or press SHIFT+F10.)';
  4136.             sTemp=L_ofShortcutMenu_TEXT;
  4137.             break;
  4138.         case 'ofSideBar':
  4139.             L_ofSideBar_TEXT='(sidebar: A note alongside the main text that contains interesting or useful information. A sidebar relates to, but is not essential to understanding, the main text.)';
  4140.             sTemp=L_ofSideBar_TEXT;
  4141.             break;
  4142.         case 'ofSingleDataType':
  4143.             L_ofSingleDataType_TEXT='(Single data type: A data type that stores single-precision floating-point variables as 32-bit (4-byte) floating-point numbers ranging in value from -3.402823E38 to -1.401298E-45 for negative values and 1.401298E-45 to 3.402823E38 for positive values.)';
  4144.             sTemp=L_ofSingleDataType_TEXT;
  4145.             break;
  4146.         case 'ofSingleStepping':
  4147.             L_ofSingleStepping_TEXT='(single stepping: A debugging technique that enables you to run a macro one action at a time or run Visual Basic code one line at a time.)';
  4148.             sTemp=L_ofSingleStepping_TEXT;
  4149.             break;
  4150.         case 'ofSizingHandle':
  4151.             L_ofSizingHandle_TEXT='(sizing handle: One of the small circles or squares that appears at the corners and sides of a selected object. You drag these handles to change the size of the object.)';
  4152.             sTemp=L_ofSizingHandle_TEXT;
  4153.             break;
  4154.         case 'ofSLIP':
  4155.             L_ofSLIP_TEXT='(Serial Line Internet Protocol (SLIP): An Internet standard for transmitting data over serial links between computers.)';
  4156.             sTemp=L_ofSLIP_TEXT;
  4157.             break;
  4158.         case 'OfSmartTags':
  4159.             L_OfSmartTags_TEXT='(smart tags: Data recognized and labeled as a particular type. For example, a person\'s name or the name of a recent Microsoft Outlook e-mail message recipient is a type of data that can be recognized and labeled with a smart tag.)';
  4160.             sTemp=L_OfSmartTags_TEXT;
  4161.             break;
  4162.         case 'ofSortOrder':
  4163.             L_ofSortOrder_TEXT='(sort order: A way to arrange data based on value or data type. You can sort data alphabetically, numerically, or by date. Sort orders use an ascending (0 to 100, A to Z) or descending (100 to 0, Z to A) order.)';
  4164.             sTemp=L_ofSortOrder_TEXT;
  4165.             break;
  4166.         case 'ofSourceFile':
  4167.             L_ofSourceFile_TEXT='(source file: The file that contains information that was used to create a linked or embedded object. When you update the information in the source file, you can also update the linked object in the destination file.)';
  4168.             sTemp=L_ofSourceFile_TEXT;
  4169.             break;
  4170.         case 'ofSourceProgram':
  4171.             L_ofSourceProgram_TEXT='(source program: The program used to create a linked object or embedded object. To edit the object, you must have the source program installed on your computer.)';
  4172.             sTemp=L_ofSourceProgram_TEXT;
  4173.             break;
  4174.         case 'ofSpreadsheetComponent':
  4175.             L_ofSpreadsheetComponent_TEXT='(Spreadsheet Component: A Microsoft Office Web Component that provides the interactive functionality of a spreadsheet on a Web page.You can enter data, add formulas and functions, apply filters, change formatting, and recalculate.)';
  4176.             sTemp=L_ofSpreadsheetComponent_TEXT;
  4177.             break;
  4178.         case 'ofSQL':
  4179.             L_ofSQL_TEXT='(Structured Query Language (SQL): A database query and programming language widely used for accessing, querying, updating, and managing data in relational database systems.)';
  4180.             sTemp=L_ofSQL_TEXT;
  4181.             break;
  4182.         case 'ofStandardToolbar':
  4183.             L_ofStandardToolbar_TEXT='(Standard toolbar: A toolbar that performs some of the most common tasks in a Microsoft Office application, such as opening, saving, and printing files.)';
  4184.             sTemp=L_ofStandardToolbar_TEXT;
  4185.             break;
  4186.         case 'ofStartPage':
  4187.             L_ofStartPage_TEXT='(start page: The first page that appears when you start a Web browser. You can set this to a Web site or to a document on your computer\'s hard disk. A start page can contain hyperlinks to other documents on your computer, on a network, or on the Web.)';
  4188.             sTemp=L_ofStartPage_TEXT;
  4189.             break;
  4190.         case 'ofStatement':
  4191.             L_ofStatement_TEXT='(statement: A syntactically complete unit that expresses one specific kind of operation, declaration, or definition. A statement is usually on one line in a procedure or Declarations section, but two or more can be on a line separated by a colon (:).)';
  4192.             sTemp=L_ofStatement_TEXT;
  4193.             break;
  4194.         case 'ofStatusBar':
  4195.             L_ofStatusBar_TEXT='(status bar: A horizontal bar at the bottom of the screen that displays information about the current condition of the program, such as the status of items in the window, the progress of the current task, or information about the selected item.)';
  4196.             sTemp=L_ofStatusBar_TEXT;
  4197.             break;
  4198.         case 'ofStory':
  4199.             L_ofStory_TEXT='(story: Text that\'s contained within a single text box or a chain of linked text boxes.)';
  4200.             sTemp=L_ofStory_TEXT;
  4201.             break;
  4202.         case 'ofStreaming':
  4203.             L_ofStreaming_TEXT='(streaming: Playing sounds or video in real time as they are downloaded over the Internet as opposed to storing them on a computer first.)';
  4204.             sTemp=L_ofStreaming_TEXT;
  4205.             break;
  4206.         case 'ofString':
  4207.             L_ofString_TEXT='(string: A collection of characters that can include both numbers and text.)';
  4208.             sTemp=L_ofString_TEXT;
  4209.             break;
  4210.         case 'ofStringComparison':
  4211.             L_ofStringComparison_TEXT='(string comparison: The use of an operator to determine whether one string is greater than or equal to another string. Use the <b>Option Compare</b> statement to specify binary (case sensitive) or text (non-case sensitive) comparison.)';
  4212.             sTemp=L_ofStringComparison_TEXT;
  4213.             break;
  4214.         case 'ofStringDataType':
  4215.             L_ofStringDataType_TEXT='(String data type: A fundamental data type that holds characters, one character per 2 bytes. A fixed-length string can contain 1 to 64K characters; a variable-length string can contain 1 to 2 billion.)';
  4216.             sTemp=L_ofStringDataType_TEXT;
  4217.             break;
  4218.         case 'ofStringExpression':
  4219.             L_ofStringExpression_TEXT='(string expression: An expression that evaluates to a sequence of contiguous characters. Elements of the expression can be: functions that return a string or a string <b>Variant</b> (VarType 8); a string literal, constant, variable, or <b>Variant.</b>)';
  4220.             sTemp=L_ofStringExpression_TEXT;
  4221.             break;
  4222.         case 'ofStrongCharacters':
  4223.             L_ofStrongCharacters_TEXT='(strong characters: The character set that makes up a particular language, such as vowels and consonants. Punctuation and special characters are not considered to be strong characters.)';
  4224.             sTemp=L_ofStrongCharacters_TEXT;
  4225.             break;
  4226.         case 'ofstructuralediting':
  4227.             L_ofstructuralediting_TEXT='(structural editing: Editing that occurs within a structured document such as a well-formed XML document.)';
  4228.             sTemp=L_ofstructuralediting_TEXT;
  4229.             break;
  4230.         case 'ofStyle':
  4231.             L_ofStyle_TEXT='(style: A combination of formatting characteristics, such as font, font size, and indentation, that you name and store as a set. When you apply a style, all of the formatting instructions in that style are applied at one time.)';
  4232.             sTemp=L_ofStyle_TEXT;
  4233.             break;
  4234.         case 'ofSubmenu':
  4235.             L_ofSubmenu_TEXT='(submenu: A menu that appears when a user points to a command on a higher-level menu.)';
  4236.             sTemp=L_ofSubmenu_TEXT;
  4237.             break;
  4238.         case 'OfSubordinateShape':
  4239.             L_OfSubordinateShape_TEXT='(subordinate shape: In an organization chart, a shape that is placed below and connected to a superior (or manager) shape.)';
  4240.             sTemp=L_OfSubordinateShape_TEXT;
  4241.             break;
  4242.         case 'ofSubscript':
  4243.             L_ofSubscript_TEXT='(subscript: Describes text that is slightly lower than other text on a line. Subscripts are often used in scientific formulas.)';
  4244.             sTemp=L_ofSubscript_TEXT;
  4245.             break;
  4246.         case 'OfSuperiorShape':
  4247.             L_OfSuperiorShape_TEXT='(superior shape: In an organization chart, a shape that is placed above and connected to any other shape, such as an employee (subordinate or coworker shape) or assistant shape.)';
  4248.             sTemp=L_OfSuperiorShape_TEXT;
  4249.             break;
  4250.         case 'ofSuperscript':
  4251.             L_ofSuperscript_TEXT='(superscript: Describes text that is slightly higher than other text on a line, such as a footnote reference mark.)';
  4252.             sTemp=L_ofSuperscript_TEXT;
  4253.             break;
  4254.         case 'ofSVGA':
  4255.             L_ofSVGA_TEXT='(super video graphics adapter (SVGA): This standard can display a screen size of 800 by 600 pixels or more.)';
  4256.             sTemp=L_ofSVGA_TEXT;
  4257.             break;
  4258.         case 'ofSwapFile':
  4259.             L_ofSwapFile_TEXT='(swap file: A temporary storage space used by Windows. If you get frequent \"out of memory\" messages, you can try setting up a swap file. A swap file allows Windows to use space on your computer\'s hard disk as memory.)';
  4260.             sTemp=L_ofSwapFile_TEXT;
  4261.             break;
  4262.         case 'ofSyntaxError':
  4263.             L_ofSyntaxError_TEXT='(syntax error: An error in the grammatical structure of the code or expression. If syntax checking is enabled, errors are highlighted after you type a line and press ENTER.)';
  4264.             sTemp=L_ofSyntaxError_TEXT;
  4265.             break;
  4266.         case 'ofSystem':
  4267.             L_ofSystem_TEXT='(System: A setting for controls and other options that derives its value from the Microsoft Windows operating system.)';
  4268.             sTemp=L_ofSystem_TEXT;
  4269.             break;
  4270.         case 'ofSystemColors':
  4271.             L_ofSystemColors_TEXT='(system colors: Colors that are defined by the operating system for a specific type of monitor and video adapter. Each color is associated with a specific part of the user interface, such as a window title or a menu.)';
  4272.             sTemp=L_ofSystemColors_TEXT;
  4273.             break;
  4274.         case 'ofTableOfContents':
  4275.             L_ofTableOfContents_TEXT='(table of contents: A list of the specific headings in a document, along with the numbers of the pages the headings appear on.)';
  4276.             sTemp=L_ofTableOfContents_TEXT;
  4277.             break;
  4278.         case 'oftabletcomputer':
  4279.             L_oftabletcomputer_TEXT='(Tablet PC: A computer that runs Microsoft Windows XP Tablet PC Edition. With a Tablet PC, you can write directly on the screen by using a tablet pen and use the pen to perform mouse functions. Also known as a tablet computer.)';
  4280.             sTemp=L_oftabletcomputer_TEXT;
  4281.             break;
  4282.         case 'oftabletpen':
  4283.             L_oftabletpen_TEXT='(tablet pen: The pen that comes with a Tablet PC and is used to interact with the tablet screen.)';
  4284.             sTemp=L_oftabletpen_TEXT;
  4285.             break;
  4286.         case 'ofTabOrder':
  4287.             L_ofTabOrder_TEXT='(tab order: The order in which the focus moves in a form from one field or object to the next as you press TAB or SHIFT+TAB.)';
  4288.             sTemp=L_ofTabOrder_TEXT;
  4289.             break;
  4290.         case 'ofTabStop':
  4291.             L_ofTabStop_TEXT='(tab stop: A location on the horizontal ruler that indicates how far to indent text or where to begin a column of text.)';
  4292.             sTemp=L_ofTabStop_TEXT;
  4293.             break;
  4294.         case 'ofTag':
  4295.             L_ofTag_TEXT='(tag: A text string used in HTML to identify a page element\'s type, format, and appearance. Many elements have start and end tags that define where the element starts and stops.)';
  4296.             sTemp=L_ofTag_TEXT;
  4297.             break;
  4298.         case 'OfTargetDiagram':
  4299.             L_OfTargetDiagram_TEXT='(Target diagram: A diagram that is used to show steps toward a goal.)';
  4300.             sTemp=L_OfTargetDiagram_TEXT;
  4301.             break;
  4302.         case 'ofTargetFrame':
  4303.             L_ofTargetFrame_TEXT='(target frame: The name of a frame in which the target page of a hyperlink is displayed. Typically, a hyperlink from one frame of a frames page (or frameset) will supply as its target frame another frame of the frames page.)';
  4304.             sTemp=L_ofTargetFrame_TEXT;
  4305.             break;
  4306.         case 'OfTaskPane':
  4307.             L_OfTaskPane_TEXT='(task pane: A window within an Office application that provides commonly used commands. Its location and small size allow you to use these commands while still working on your files.)';
  4308.             sTemp=L_OfTaskPane_TEXT;
  4309.             break;
  4310.         case 'ofTCP':
  4311.             L_ofTCP_TEXT='(TCP: Internet networking software that controls the transmission of packets of data over the Internet. Computers must run TCP to communicate with Web servers.)';
  4312.             sTemp=L_ofTCP_TEXT;
  4313.             break;
  4314.         case 'OfTeamSites':
  4315.             L_OfTeamSites_TEXT='(team Web site: A customizable Web site with features that help a team work together. The default site has pages for document libraries, announcements, and team events. Only members, specified by the site creator, can use the site.)';
  4316.             sTemp=L_OfTeamSites_TEXT;
  4317.             break;
  4318.         case 'ofTemplate':
  4319.             L_ofTemplate_TEXT='(template: A file or files that contain the structure and tools for shaping such elements as the style and page layout of finished files. For example, Word templates can shape a single document, and FrontPage templates can shape an entire Web site.)';
  4320.             sTemp=L_ofTemplate_TEXT;
  4321.             break;
  4322.         case 'ofTextBox':
  4323.             L_ofTextBox_TEXT='(text box: A movable, resizable container for text or graphics. Use text boxes to position several blocks of text on a page or to give text a different orientation from other text in the document.)';
  4324.             sTemp=L_ofTextBox_TEXT;
  4325.             break;
  4326.         case 'ofTextFrame':
  4327.             L_ofTextFrame_TEXT='(text frame: The area within a shape that can contain text.)';
  4328.             sTemp=L_ofTextFrame_TEXT;
  4329.             break;
  4330.         case 'ofTextQueryKB':
  4331.             L_ofTextQueryKB_TEXT='(text query (Microsoft Knowledge Base): One or more phrases that tell the Knowledge Base what to search for. Queries can contain operators, quotation marks, wildcard characters, and parentheses to help focus the search.)';
  4332.             sTemp=L_ofTextQueryKB_TEXT;
  4333.             break;
  4334.         case 'ofTGA':
  4335.             L_ofTGA_TEXT='(TGA: A photorealistic graphics file format designed for systems with a TARGA Truevision display adapter.)';
  4336.             sTemp=L_ofTGA_TEXT;
  4337.             break;
  4338.         case 'ofTheme':
  4339.             L_ofTheme_TEXT='(theme: A set of unified design elements that provides a look for your document  by using color, fonts, and graphics.)';
  4340.             sTemp=L_ofTheme_TEXT;
  4341.             break;
  4342.         case 'ofThread':
  4343.             L_ofThread_TEXT='(thread: In e-mail and Internet newsgroups conversations, a series of messages and replies that are all related to a specific topic.)';
  4344.             sTemp=L_ofThread_TEXT;
  4345.             break;
  4346.         case 'ofThumbnail':
  4347.             L_ofThumbnail_TEXT='(thumbnail: A miniature representation of a picture on a Web page, usually containing a hyperlink to a full-size version of the graphic. Thumbnails are used to load pages rich in graphics or pictures more quickly in a Web browser.)';
  4348.             sTemp=L_ofThumbnail_TEXT;
  4349.             break;
  4350.         case 'OfThumbnailGeneric':
  4351.             L_OfThumbnailGeneric_TEXT='(thumbnail: A miniature representation of a picture.)';
  4352.             sTemp=L_OfThumbnailGeneric_TEXT;
  4353.             break;
  4354.         case 'ofTIFF':
  4355.             L_ofTIFF_TEXT='(Tagged Image File Format (TIFF): A high-resolution, tag-based graphics format. TIFF is used for the universal interchange of digital graphics.)';
  4356.             sTemp=L_ofTIFF_TEXT;
  4357.             break;
  4358.         case 'ofTint':
  4359.             L_ofTint_TEXT='(tint: A color mixed with white. A 10-percent tint is one part of the original color and nine parts white.)';
  4360.             sTemp=L_ofTint_TEXT;
  4361.             break;
  4362.         case 'ofTitleBar':
  4363.             L_ofTitleBar_TEXT='(title bar: A horizontal bar at the top of a window, dialog box, or toolbar that shows the name of the document, program, or toolbar.)';
  4364.             sTemp=L_ofTitleBar_TEXT;
  4365.             break;
  4366.         case 'ofTopic':
  4367.             L_ofTopic_TEXT='(topic: The subject of a dynamic data exchange (DDE) conversation between two applications. For most applications that use files, the topic is a file name.)';
  4368.             sTemp=L_ofTopic_TEXT;
  4369.             break;
  4370.         case 'ofTransition':
  4371.             L_ofTransition_TEXT='(transition: One of a set of transitional display effects that are available in some Microsoft Office applications. Transitions specify how the display changes (such as fading to black) as a user moves from one item (such as  slide or Web page) to another.)';
  4372.             sTemp=L_ofTransition_TEXT;
  4373.             break;
  4374.         case 'ofTransparency':
  4375.             L_ofTransparency_TEXT='(transparency: The quality that defines how much light passes through an object\'s pixels. If an object is 100 percent transparent, light passes through it completely and renders the object invisible; in other words, you can see through the object.)';
  4376.             sTemp=L_ofTransparency_TEXT;
  4377.             break;
  4378.         case 'ofTrueTypeFont':
  4379.             L_ofTrueTypeFont_TEXT='(TrueType font: A font (typeface) that appears on a printed document exactly the way it appears on the screen. TrueType fonts are scalable to any font size. Several of these fonts are installed automatically when you install Windows.)';
  4380.             sTemp=L_ofTrueTypeFont_TEXT;
  4381.             break;
  4382.         case 'ofTwip':
  4383.             L_ofTwip_TEXT='(twip: Unit of measurement that is equal to 1/20 of a point, or 1/1,440 of an inch. There are 567 twips in a centimeter.)';
  4384.             sTemp=L_ofTwip_TEXT;
  4385.             break;
  4386.         case 'oftypedtext':
  4387.             L_oftypedtext_TEXT='(typed text: Typewritten words that you enter by using the keyboard or convert from writing or speech.)';
  4388.             sTemp=L_oftypedtext_TEXT;
  4389.             break;
  4390.         case 'ofTypeLibrary':
  4391.             L_ofTypeLibrary_TEXT='(type library: A file (or component within another file) that contains Automation standard descriptions of exposed objects, properties, and methods. Object library (.olb) files contain type libraries (.tlb) that are shipped as stand-alone files.)';
  4392.             sTemp=L_ofTypeLibrary_TEXT;
  4393.             break;
  4394.         case 'ofUNC':
  4395.             L_ofUNC_TEXT='(universal naming convention (UNC): A naming convention for files that provides a machine-independent means of locating the file. Rather than specifying a drive letter and path, a UNC name uses the syntax \\\\server\\share\\path\\filename.)';
  4396.             sTemp=L_ofUNC_TEXT;
  4397.             break;
  4398.         case 'ofUnicode':
  4399.             L_ofUnicode_TEXT='(Unicode: A character encoding standard developed by the Unicode Consortium. By using more than one byte to represent each character, Unicode enables almost all of the written languages in the world to be represented by using a single character set.)';
  4400.             sTemp=L_ofUnicode_TEXT;
  4401.             break;
  4402.         case 'ofuniformresourceidentifieruri':
  4403.             L_ofuniformresourceidentifieruri_TEXT='(Uniform Resource Identifier (URI): A character string used to identify a resource on the Internet by type and location.)';
  4404.             sTemp=L_ofuniformresourceidentifieruri_TEXT;
  4405.             break;
  4406.         case 'ofuniformresourcenameurn':
  4407.             L_ofuniformresourcenameurn_TEXT='(Uniform Resource Name (URN): A scheme for uniquely identifying resources that may be available on the Internet by name, without regard to where they are located.)';
  4408.             sTemp=L_ofuniformresourcenameurn_TEXT;
  4409.             break;
  4410.         case 'ofUNIX':
  4411.             L_ofUNIX_TEXT='(UNIX: A multi-user, multitasking operating system that exists in various forms and implementations, typically used on proprietary computer workstations. Many Web servers run on UNIX systems.)';
  4412.             sTemp=L_ofUNIX_TEXT;
  4413.             break;
  4414.         case 'ofURL':
  4415.             L_ofURL_TEXT='(Uniform Resource Locator (URL): An address that specifies a protocol (such as HTTP or FTP) and a location of an object, document, World Wide Web page, or other destination on the Internet or an intranet, for example: http://www.microsoft.com/.)';
  4416.             sTemp=L_ofURL_TEXT;
  4417.             break;
  4418.         case 'ofUserInterfaceLanguage':
  4419.             L_ofUserInterfaceLanguage_TEXT='(user interface language: The language used in menus, toolbars, dialog boxes, and messages. If you have the Microsoft Office MultiLanguage Pack, you can view the user interface in languages other than the installed language of your version of Office.)';
  4420.             sTemp=L_ofUserInterfaceLanguage_TEXT;
  4421.             break;
  4422.         case 'ofVariable':
  4423.             L_ofVariable_TEXT='(variable: A named storage location capable of containing data that can be modified during program execution. Each variable has a name that uniquely identifies it within its level of scope. A data type can be specified or not.)';
  4424.             sTemp=L_ofVariable_TEXT;
  4425.             break;
  4426.         case 'ofVariantDataType':
  4427.             L_ofVariantDataType_TEXT='(Variant data type: The default data type for variables that don\'t have type-declaration characters when a <b>Def</b><i>type</i> statement isn\'t in effect. A <b>Variant</b> can store numeric, string, date/time, <b>Null</b>, or <b>Empty</b> data.)';
  4428.             sTemp=L_ofVariantDataType_TEXT;
  4429.             break;
  4430.         case 'ofVBA':
  4431.             L_ofVBA_TEXT='(VBA: A macro-language version of Microsoft Visual Basic that is used to program Windows applications and is included with several Microsoft applications.)';
  4432.             sTemp=L_ofVBA_TEXT;
  4433.             break;
  4434.         case 'ofVBScript':
  4435.             L_ofVBScript_TEXT='(Visual Basic Scripting Edition (VBScript): An interpreted, object-based scripting language that is a subset of the Microsoft Visual Basic programming language.)';
  4436.             sTemp=L_ofVBScript_TEXT;
  4437.             break;
  4438.         case 'OfVennDiagram':
  4439.             L_OfVennDiagram_TEXT='(Venn diagram: A diagram that is used to show areas of overlap between and among elements.)';
  4440.             sTemp=L_OfVennDiagram_TEXT;
  4441.             break;
  4442.         case 'ofVerb':
  4443.             L_ofVerb_TEXT='(verb: One of three operations, Edit, Open, or Play, that you activate by double-clicking an OLE object that is embedded in an object frame.)';
  4444.             sTemp=L_ofVerb_TEXT;
  4445.             break;
  4446.         case 'ofVertex':
  4447.             L_ofVertex_TEXT='(vertex: The highest point of a curve, the point where a curve ends, or the point where two line segments meet in a polygon or freeform.)';
  4448.             sTemp=L_ofVertex_TEXT;
  4449.             break;
  4450.         case 'ofVGA':
  4451.             L_ofVGA_TEXT='(video graphics adapter (VGA): A computer video standard that displays a screen size of 640 horizontal pixels by 480 vertical pixels.)';
  4452.             sTemp=L_ofVGA_TEXT;
  4453.             break;
  4454.         case 'ofVideoCaptureDevice':
  4455.             L_ofVideoCaptureDevice_TEXT='(video capture device: A device that converts analog images (for example, from a television or VCR) into digital images.)';
  4456.             sTemp=L_ofVideoCaptureDevice_TEXT;
  4457.             break;
  4458.         case 'OfView':
  4459.             L_OfView_TEXT='(view: A set of fields on a Web page that displays items in a list or document library. The view can display sorted or filtered items, a selection of fields, or a custom layout. Requires a Web server that is running Microsoft\'s SharePoint Team Services.)';
  4460.             sTemp=L_OfView_TEXT;
  4461.             break;
  4462.         case 'ofVirus':
  4463.             L_ofVirus_TEXT='(virus: A computer program or macro that \"infects\" computer files by inserting copies of itself into those files. When the infected file is loaded into memory, the virus can infect other files. Viruses often have harmful side effects.)';
  4464.             sTemp=L_ofVirus_TEXT;
  4465.             break;
  4466.         case 'ofVisual':
  4467.             L_ofVisual_TEXT='(visual: Used to describe insertion point movement and text selection when working with bidirectional text. Movement progresses within bidirectional text by moving to the next visually adjacent character.)';
  4468.             sTemp=L_ofVisual_TEXT;
  4469.             break;
  4470.         case 'ofVisualBasic':
  4471.             L_ofVisualBasic_TEXT='(Visual Basic: A high-level, visual-programming version of Basic. Visual Basic was developed by Microsoft for building Windows-based applications.)';
  4472.             sTemp=L_ofVisualBasic_TEXT;
  4473.             break;
  4474.         case 'ofVisualBasicEditor':
  4475.             L_ofVisualBasicEditor_TEXT='(Visual Basic Editor: An environment in which you write new and edit existing Visual Basic for Applications code and procedures. The Visual Basic Editor contains a complete debugging toolset for finding syntax, run-time, and logic problems in your code.)';
  4476.             sTemp=L_ofVisualBasicEditor_TEXT;
  4477.             break;
  4478.         case 'OfVisualBasicHelp':
  4479.             L_OfVisualBasicHelp_TEXT='(Visual Basic Help: To get Help for Visual Basic, point to <b>Macro </b>on the <b>Tools </b>menu, and then click <b>Visual Basic Editor</b>. On the <b>Help</b> menu, click <b>Microsoft Visual Basic Help</b>.)';
  4480.             sTemp=L_OfVisualBasicHelp_TEXT;
  4481.             break;
  4482.         case 'ofWAIS':
  4483.             L_ofWAIS_TEXT='(Wide Area Information Server (WAIS): A UNIX-based document search and retrieval system on the Internet that can be used to search over 400 WAIS libraries for indexed files that match a series of keywords.)';
  4484.             sTemp=L_ofWAIS_TEXT;
  4485.             break;
  4486.         case 'ofWAN':
  4487.             L_ofWAN_TEXT='(wide area network (WAN): A computer network that spans a long distance and uses specialized computers to connect smaller networks.)';
  4488.             sTemp=L_ofWAN_TEXT;
  4489.             break;
  4490.         case 'ofWatchExpression':
  4491.             L_ofWatchExpression_TEXT='(watch expression: An expression you define in the Watch pane of the Immediate window while debugging Visual Basic code. When execution of your code is suspended, you can observe the values of the watch expressions as you step through the code.)';
  4492.             sTemp=L_ofWatchExpression_TEXT;
  4493.             break;
  4494.         case 'ofWatchWindow':
  4495.             L_ofWatchWindow_TEXT='(Watch window: A window in the Visual Basic Editor used for debugging Visual Basic procedures. You can specify the variables from the procedure you want to inspect, and the Watch window displays the value of the variable as the procedure runs.)';
  4496.             sTemp=L_ofWatchWindow_TEXT;
  4497.             break;
  4498.         case 'ofWatermark':
  4499.             L_ofWatermark_TEXT='(watermark: A semi-transparent image often used for letters and business cards. In currency, a watermark is visible when you hold a bill up to the light.)';
  4500.             sTemp=L_ofWatermark_TEXT;
  4501.             break;
  4502.         case 'ofWebBrowser':
  4503.             L_ofWebBrowser_TEXT='(Web browser: Software that interprets HTML files, formats them into Web pages, and displays them. A Web browser, such as Microsoft Internet Explorer, can follow hyperlinks, transfer files, and play sound or video files that are embedded in Web pages.)';
  4504.             sTemp=L_ofWebBrowser_TEXT;
  4505.             break;
  4506.         case 'OfWebDiscussion':
  4507.             L_OfWebDiscussion_TEXT='(Web discussion: Comments that users attach to Web pages and documents. Also known as \"Web document discussion\" to differentiate it from discussion boards. Requires a Web server that is running Microsoft Windows SharePoint Services.)';
  4508.             sTemp=L_OfWebDiscussion_TEXT;
  4509.             break;
  4510.         case 'OfWebFolder':
  4511.             L_OfWebFolder_TEXT='(Web folder: A shortcut you use to save, open, copy, or delete files on a Web or FTP server. Some Web folders, such as document libraries, have functionality not available with local folders. You\'ll find Web folders in My Network Places or Web Folders.)';
  4512.             sTemp=L_OfWebFolder_TEXT;
  4513.             break;
  4514.         case 'OfWebPresenceProvider':
  4515.             L_OfWebPresenceProvider_TEXT='(Web Presence Provider (WPP): A Web hosting and Internet Service Provider who manages the Web server hardware and software required to make your Web site available on the Internet.)';
  4516.             sTemp=L_OfWebPresenceProvider_TEXT;
  4517.             break;
  4518.         case 'ofWebSite':
  4519.             L_ofWebSite_TEXT='(Web site: A group of related Web pages that is hosted by an HTTP server on the World Wide Web. The pages in a Web site generally cover one or more topics and are interconnected through hyperlinks. Most Web sites have a home page as their starting point.)';
  4520.             sTemp=L_ofWebSite_TEXT;
  4521.             break;
  4522.         case 'OfWebStorageSystem':
  4523.             L_OfWebStorageSystem_TEXT='(WSS: The storage component of Exchange 2000 server and SharePoint Team Services, which integrates Web server, database, file system, and workgroup functionality. The WSS lets you store and share many types of data in a single integrated system.)';
  4524.             sTemp=L_OfWebStorageSystem_TEXT;
  4525.             break;
  4526.         case 'ofwellformedxmldocument':
  4527.             L_ofwellformedxmldocument_TEXT='(well-formed XML document: XML file in which there is only one root element and all the elements, delimited by start- and end-tags, nest properly within each other.)';
  4528.             sTemp=L_ofwellformedxmldocument_TEXT;
  4529.             break;
  4530.         case 'ofWestern':
  4531.             L_ofWestern_TEXT='(Western calendar: Used to describe the Gregorian calendar that is used predominantly in Europe and English-speaking countries.)';
  4532.             sTemp=L_ofWestern_TEXT;
  4533.             break;
  4534.         case 'ofWhatsThisTip':
  4535.             L_ofWhatsThisTip_TEXT='(What\'s This tip: A tip that appears beside a control, screen region, menu command, or toolbar button.)';
  4536.             sTemp=L_ofWhatsThisTip_TEXT;
  4537.             break;
  4538.         case 'ofWhiteSpace':
  4539.             L_ofWhiteSpace_TEXT='(white space: The areas of blank space on a page that can be used in a design for balance, contrast, and visual appeal.)';
  4540.             sTemp=L_ofWhiteSpace_TEXT;
  4541.             break;
  4542.         case 'ofWindowsAPI':
  4543.             L_ofWindowsAPI_TEXT='(Windows API: The functions, messages, data structures, data types, and statements you can use in creating applications that run under Microsoft Windows 95 or later, including procedure declarations, user-defined type definitions, and constant declarations.)';
  4544.             sTemp=L_ofWindowsAPI_TEXT;
  4545.             break;
  4546.         case 'OfWindowsImageAcquisition':
  4547.             L_OfWindowsImageAcquisition_TEXT='(Windows Image Acquisition (WIA): A device-driver interface that supports still digital cameras and low- and high-end scanners, and allows retrieving of still images from IEEE 1394-based DV camcorders and USB-based \"Web cams.\")';
  4548.             sTemp=L_OfWindowsImageAcquisition_TEXT;
  4549.             break;
  4550.         case 'ofWizard':
  4551.             L_ofWizard_TEXT='(wizard: A feature that asks questions and then creates an item, such as a form or Web page, according to your answers.)';
  4552.             sTemp=L_ofWizard_TEXT;
  4553.             break;
  4554.         case 'ofWMF':
  4555.             L_ofWMF_TEXT='(Windows Metafile Format (WMF): A vector graphics format for Windows-compatiblle computers used mostly as a clip art format in word-processing documents.)';
  4556.             sTemp=L_ofWMF_TEXT;
  4557.             break;
  4558.         case 'OfWordart':
  4559.             L_OfWordart_TEXT='(WordArt: Text objects you create with ready-made effects to which you can apply additional formatting options.)';
  4560.             sTemp=L_OfWordart_TEXT;
  4561.             break;
  4562.         case 'ofWordArtWithRightToLeft':
  4563.             L_ofWordArtWithRightToLeft_TEXT='(WordArt with right-to-left features: WordArt provides right-to-left language support when Office is enabled with a right-to-left language. A WordArt object accepts text of only one language at a time, but you can prepare a WordArt object for each language.)';
  4564.             sTemp=L_ofWordArtWithRightToLeft_TEXT;
  4565.             break;
  4566.         case 'ofWorkingFolder':
  4567.             L_ofWorkingFolder_TEXT='(working folder: The folder in which your documents appear when you open or save them. If you select another folder when opening or saving, that folder becomes the working folder. You can set the startup location of this folder in most Office applications.)';
  4568.             sTemp=L_ofWorkingFolder_TEXT;
  4569.             break;
  4570.         case 'ofWorkpane':
  4571.             L_ofWorkpane_TEXT='(workpane: The area of the workspace that contains the options you select for a given task. Workpanes appear at certain times, such as when a document is opened, or when you click certain items on menus and toolbars.)';
  4572.             sTemp=L_ofWorkpane_TEXT;
  4573.             break;
  4574.         case 'ofWorldWideWebConsortium':
  4575.             L_ofWorldWideWebConsortium_TEXT='(World Wide Web Consortium (W3C): A consortium of commercial and educational institutions that oversees research and promotes standards in all areas related to the World Wide Web.)';
  4576.             sTemp=L_ofWorldWideWebConsortium_TEXT;
  4577.             break;
  4578.         case 'ofxmlexpansionpack':
  4579.             L_ofxmlexpansionpack_TEXT='(XML expansion pack: A collection of files, managed by a manifest.xml file, that add functionality to a Microsoft Word or Microsoft Excel document by specifying custom display or actions.)';
  4580.             sTemp=L_ofxmlexpansionpack_TEXT;
  4581.             break;
  4582.         case 'OfXmlSchemas':
  4583.             L_OfXmlSchemas_TEXT='(XML Schema: A formal specification, written in XML, that defines the structure of an XML document, including element names and rich data types, which elements can appear in combination, and which attributes are available for each element.)';
  4584.             sTemp=L_OfXmlSchemas_TEXT;
  4585.             break;
  4586.         case 'OfXmlStylesheet':
  4587.             L_OfXmlStylesheet_TEXT='(XML stylesheet: Contains formatting rules which are applied to an XML file that references the stylesheet. The standard set of rules for XML stylesheets is the Extensible Style Language (XSL).)';
  4588.             sTemp=L_OfXmlStylesheet_TEXT;
  4589.             break;
  4590.         case 'wddefbidiAlefLam':
  4591.             L_wddefbidiAlefLam_TEXT='(Alef Lam: Analogous to the English word \"the.\" Can be ignored when sorting text in tables in several Microsoft Office programs when enabled for right-to-left features.)';
  4592.             sTemp=L_wddefbidiAlefLam_TEXT;
  4593.             break;
  4594.         case 'wddefbidiComplexScript':
  4595.             L_wddefbidiComplexScript_TEXT='(complex scripts: Languages whose characters require ligation or shaping, such as the right-to-left languages (Arabic, Farsi, Hebrew, and Urdu) and several South Asian languages.)';
  4596.             sTemp=L_wddefbidiComplexScript_TEXT;
  4597.             break;
  4598.         case 'wddefbidiInstalledLanguage':
  4599.             L_wddefbidiInstalledLanguage_TEXT='(installed language: The base language used that governs how several language characteristics will behave, such as the language of the primary dictionary, and the direction and alignment of text (left-to-right or right-to-left).)';
  4600.             sTemp=L_wddefbidiInstalledLanguage_TEXT;
  4601.             break;
  4602.         case 'wddefbidiLunar':
  4603.             L_wddefbidiLunar_TEXT='(Lunar calendar: Predominant calendar that is used in Israel among Hebrew speakers.)';
  4604.             sTemp=L_wddefbidiLunar_TEXT;
  4605.             break;
  4606.         case 'xldefToolbarDock':
  4607.             L_xldefToolbarDock_TEXT='(docked toolbar: A toolbar that is attached to one edge of the program window. When you drag a toolbar below the program title bar or to the left, right, or bottom edge of the program window, the toolbar snaps into place on the edge of the program window.)';
  4608.             sTemp=L_xldefToolbarDock_TEXT;
  4609.             break;
  4610.  
  4611.         // Outlook
  4612.  
  4613.         case 'IDH_ofdefHistoryList':
  4614.             L_IDH_ofdefHistoryList_TEXT='(History list: A list of the last 10 files that you jumped to in the current program session by using hyperlinks.)';
  4615.             sTemp=L_IDH_ofdefHistoryList_TEXT;
  4616.             break;
  4617.         case 'IDH_oldefAttribute':
  4618.             L_IDH_oldefAttribute_TEXT='(attribute: A holder for a single piece of information, for example, the surname of a person. Each entry in an Internet Directory is made up of a list of attributes. Your Internet Directory site administrator determines the attributes relevant to you.)';
  4619.             sTemp=L_IDH_oldefAttribute_TEXT;
  4620.             break;
  4621.         case 'IDH_oldefDistinguishedName':
  4622.             L_IDH_oldefDistinguishedName_TEXT='(distinguished name: Uniquely identifies a person or group across all Internet directories. Consists of several descriptive attributes, such as Common Name, Organization, and Country. An example of a distinguished name is: cn=Jeff Hay, o=Microsoft, c=US.)';
  4623.             sTemp=L_IDH_oldefDistinguishedName_TEXT;
  4624.             break;
  4625.         case 'IDH_oldefFolderList':
  4626.             L_IDH_oldefFolderList_TEXT='(Folder List: Displays the folders available in your mailbox. To view subfolders, click the plus sign (+) next to the folder. If the Folder List is not visible, on the Go menu, click Folder List.)';
  4627.             sTemp=L_IDH_oldefFolderList_TEXT;
  4628.             break;
  4629.         case 'IDH_oldefInternetDirectory':
  4630.             L_IDH_oldefInternetDirectory_TEXT='(Internet Directory: Storage place for information such as names, organizations, departments, countries, and locations. Typically, Internet Directories are used to find e-mail addresses that are not in a local address book or a corporate-wide directory.)';
  4631.             sTemp=L_IDH_oldefInternetDirectory_TEXT;
  4632.             break;
  4633.         case 'IDH_oldefLDAP':
  4634.             L_IDH_oldefLDAP_TEXT='(Lightweight Directory Access Protocol (LDAP): A protocol that provides access to Internet Directories.)';
  4635.             sTemp=L_IDH_oldefLDAP_TEXT;
  4636.             break;
  4637.         case 'IDH_oldefOrganizationalUnit':
  4638.             L_IDH_oldefOrganizationalUnit_TEXT='(organizational unit: A type of entry that is used specifically for storing information about a section of an organization. It can represent a department or a group of people, for example, ou = Accounting Dept.)';
  4639.             sTemp=L_IDH_oldefOrganizationalUnit_TEXT;
  4640.             break;
  4641.         case 'IDH_oltipFolderHomePage':
  4642.             L_IDH_oltipFolderHomePage_TEXT='(folder home page: Internet Web page or intranet page that is associated with an Outlook folder. If a page has been associated with the folder and the option is set, the Web page appears in the Outlook window whenever you select the folder.)';
  4643.             sTemp=L_IDH_oltipFolderHomePage_TEXT;
  4644.             break;
  4645.         case 'IDH_redefAcceleratorKey':
  4646.             L_IDH_redefAcceleratorKey_TEXT='(accelerator key: A single character that is used as a shortcut for selecting an object. Also called keyboard accelerator, shortcut key, and keyboard shortcut.)';
  4647.             sTemp=L_IDH_redefAcceleratorKey_TEXT;
  4648.             break;
  4649.         case 'IDH_redefAddressBook':
  4650.             L_IDH_redefAddressBook_TEXT='(Address Book: The collection of address books that you can use to store names, e-mail addresses, fax numbers, and distribution lists. The Address Book may contain a Global Address List, an Outlook Address Book, and a Personal Address Book.)';
  4651.             sTemp=L_IDH_redefAddressBook_TEXT;
  4652.             break;
  4653.         case 'IDH_redefArchiving':
  4654.             L_IDH_redefArchiving_TEXT='(archive: To remove selected items to another location for storage and occasional future access.)';
  4655.             sTemp=L_IDH_redefArchiving_TEXT;
  4656.             break;
  4657.         case 'IDH_redefArgument':
  4658.             L_IDH_redefArgument_TEXT='(argument: The value of a field or an expression that is used in a function.)';
  4659.             sTemp=L_IDH_redefArgument_TEXT;
  4660.             break;
  4661.         case 'IDH_redefAssignedTask':
  4662.             L_IDH_redefAssignedTask_TEXT='(assigned task: A task that has been sent to someone as a task request in an e-mail message. When you assign a task, you give up ownership of it (unless the assignee declines it). The assigner can receive status reports for the task.)';
  4663.             sTemp=L_IDH_redefAssignedTask_TEXT;
  4664.             break;
  4665.         case 'IDH_redefAutoArchiving':
  4666.             L_IDH_redefAutoArchiving_TEXT='(AutoArchive: To automatically remove items to another folder periodically or delete them, based on the amount of time that they have been in the folder.)';
  4667.             sTemp=L_IDH_redefAutoArchiving_TEXT;
  4668.             break;
  4669.         case 'IDH_redefBackgroundColor':
  4670.             L_IDH_redefBackgroundColor_TEXT='(background color: The color of the client region of an empty window or display screen, on which all drawing and color display takes place.)';
  4671.             sTemp=L_IDH_redefBackgroundColor_TEXT;
  4672.             break;
  4673.         case 'IDH_redefBind':
  4674.             L_IDH_redefBind_TEXT='(bind: The only controls that you need to bind to fields are the controls for which you need to save information. When a control is bound to a field, the information from the control is saved in the field.)';
  4675.             sTemp=L_IDH_redefBind_TEXT;
  4676.             break;
  4677.         case 'IDH_redefBitwiseComparison':
  4678.             L_IDH_redefBitwiseComparison_TEXT='(bit-wise comparison: A bit-by-bit comparison of identically positioned bits in two numeric expressions.)';
  4679.             sTemp=L_IDH_redefBitwiseComparison_TEXT;
  4680.             break;
  4681.         case 'IDH_redefBoldDates':
  4682.             L_IDH_redefBoldDates_TEXT='(bold dates: Days that contain items in the small calendar (called the Date Navigator) are bold.)';
  4683.             sTemp=L_IDH_redefBoldDates_TEXT;
  4684.             break;
  4685.         case 'IDH_redefBound':
  4686.             L_IDH_redefBound_TEXT='(bound: A control whose contents are associated with a particular data source, such as a field in a Contacts folder.)';
  4687.             sTemp=L_IDH_redefBound_TEXT;
  4688.             break;
  4689.         case 'IDH_redefCaption':
  4690.             L_IDH_redefCaption_TEXT='(caption: Descriptive text that appears directly on or around a control.)';
  4691.             sTemp=L_IDH_redefCaption_TEXT;
  4692.             break;
  4693.         case 'IDH_redefCategory':
  4694.             L_IDH_redefCategory_TEXT='(category: A keyword or phrase that helps you keep track of items so you can easily find, sort, filter, or group them.)';
  4695.             sTemp=L_IDH_redefCategory_TEXT;
  4696.             break;
  4697.         case 'IDH_redefCharacter':
  4698.             L_IDH_redefCharacter_TEXT='(character code: A number that represents a particular character in a set, such as the ANSI character set.)';
  4699.             sTemp=L_IDH_redefCharacter_TEXT;
  4700.             break;
  4701.         case 'IDH_redefClassIdentifierCLSID':
  4702.             L_IDH_redefClassIdentifierCLSID_TEXT='(class identifier (CLSID): A unique identifier (UUID) that identifies an object. An object registers its CLSID in the system registration database so the object can be loaded and programmed by other applications.)';
  4703.             sTemp=L_IDH_redefClassIdentifierCLSID_TEXT;
  4704.             break;
  4705.         case 'IDH_redefClientRegion':
  4706.             L_IDH_redefClientRegion_TEXT='(client region: The portion of a window where an application displays output such as text or graphics.)';
  4707.             sTemp=L_IDH_redefClientRegion_TEXT;
  4708.             break;
  4709.         case 'IDH_redefClientScripts':
  4710.             L_IDH_redefClientScripts_TEXT='(client scripts: Statements that appear on the HTML page. Scripts are executed when a document is loaded or in response to an event such as a button click.)';
  4711.             sTemp=L_IDH_redefClientScripts_TEXT;
  4712.             break;
  4713.         case 'IDH_redefColumnHeading':
  4714.             L_IDH_redefColumnHeading_TEXT='(column heading: The horizontal bar at the top of one column in a table. There are multiple column headings in the column heading row.)';
  4715.             sTemp=L_IDH_redefColumnHeading_TEXT;
  4716.             break;
  4717.         case 'IDH_redefComparisonOperators':
  4718.             L_IDH_redefComparisonOperators_TEXT='(comparison operators: A character or symbol that indicates a relationship between two or more values or expressions, for example, <, >, and =.)';
  4719.             sTemp=L_IDH_redefComparisonOperators_TEXT;
  4720.             break;
  4721.         case 'IDH_redefContactAddressBook':
  4722.             L_IDH_redefContactAddressBook_TEXT='(Outlook Address Book: An address book that is automatically created from contacts in the Contacts folder. The contacts can be people inside and outside of your organization. When you update your contacts, the Outlook Address Book is updated as well.)';
  4723.             sTemp=L_IDH_redefContactAddressBook_TEXT;
  4724.             break;
  4725.         case 'IDH_redefContactList':
  4726.             L_IDH_redefContactList_TEXT='(contact list: In the Contacts folder, the list of people and organizations with whom you correspond.)';
  4727.             sTemp=L_IDH_redefContactList_TEXT;
  4728.             break;
  4729.         case 'IDH_redefContainer':
  4730.             L_IDH_redefContainer_TEXT='(container: An object that can contain other objects.)';
  4731.             sTemp=L_IDH_redefContainer_TEXT;
  4732.             break;
  4733.         case 'IDH_redefContextID':
  4734.             L_IDH_redefContextID_TEXT='(context ID: A unique number or string that corresponds to a specific object in an application. Context IDs are used to create links between the application and corresponding Help topics.)';
  4735.             sTemp=L_IDH_redefContextID_TEXT;
  4736.             break;
  4737.         case 'IDH_redefControlGroup':
  4738.             L_IDH_redefControlGroup_TEXT='(control group: A set of controls that are conceptually or logically related. Controls that are conceptually related are usually viewed together but do not necessarily affect each other. Controls that are logically related affect each other.)';
  4739.             sTemp=L_IDH_redefControlGroup_TEXT;
  4740.             break;
  4741.         case 'IDH_redefControlTip':
  4742.             L_IDH_redefControlTip_TEXT='(control tip: A brief phrase that describes a control, a page, or a tab. The control tip appears when the user briefly holds the mouse pointer over a control.)';
  4743.             sTemp=L_IDH_redefControlTip_TEXT;
  4744.             break;
  4745.         case 'IDH_redefCursor':
  4746.             L_IDH_redefCursor_TEXT='(cursor: A piece of software that returns rows of data to the application. A cursor on a result set indicates the current position in the result set.)';
  4747.             sTemp=L_IDH_redefCursor_TEXT;
  4748.             break;
  4749.         case 'IDH_redefCustomField':
  4750.             L_IDH_redefCustomField_TEXT='(custom field: A field that you can create. A custom field can be a blank, combination, or formula field.)';
  4751.             sTemp=L_IDH_redefCustomField_TEXT;
  4752.             break;
  4753.         case 'IDH_redefCycle':
  4754.             L_IDH_redefCycle_TEXT='(cycle: To move through a group of objects in a defined order.)';
  4755.             sTemp=L_IDH_redefCycle_TEXT;
  4756.             break;
  4757.         case 'IDH_redefDataSource':
  4758.             L_IDH_redefDataSource_TEXT='(data source: The location of data to which a control is bound. For example, a field in a Contacts folder.)';
  4759.             sTemp=L_IDH_redefDataSource_TEXT;
  4760.             break;
  4761.         case 'IDH_redefDateExpression':
  4762.             L_IDH_redefDateExpression_TEXT='(date expression: Any expression that can be interpreted as a date. This includes any combination of date literals, numbers that look like dates, strings that look like dates, and dates returned from functions.)';
  4763.             sTemp=L_IDH_redefDateExpression_TEXT;
  4764.             break;
  4765.         case 'IDH_redefDateLiteral':
  4766.             L_IDH_redefDateLiteral_TEXT='(date literal: Any sequence of characters with a valid format that is surrounded by number signs (#). Valid formats include the date format specified by the locale settings for your code or the universal date format.)';
  4767.             sTemp=L_IDH_redefDateLiteral_TEXT;
  4768.             break;
  4769.         case 'IDH_redefDateSeperators':
  4770.             L_IDH_redefDateSeperators_TEXT='(date separators: Characters that are used to separate the day, month, and year when date values are formatted. The characters are determined by system settings or by the Format function.)';
  4771.             sTemp=L_IDH_redefDateSeperators_TEXT;
  4772.             break;
  4773.         case 'IDH_redefDayNumber':
  4774.             L_IDH_redefDayNumber_TEXT='(day numbers: The numbers in the small calendar (called the Date Navigator) under the weekday columns. Days that contain items are bold.)';
  4775.             sTemp=L_IDH_redefDayNumber_TEXT;
  4776.             break;
  4777.         case 'IDH_redefDelegate':
  4778.             L_IDH_redefDelegate_TEXT='(delegate: Someone granted permission to open another person\'s folders, create items, and respond to requests for that person. The person granting delegate permission determines the folders the delegate can access and the changes the delegate can make.)';
  4779.             sTemp=L_IDH_redefDelegate_TEXT;
  4780.             break;
  4781.         case 'IDH_redefDialableFormat':
  4782.             L_IDH_redefDialableFormat_TEXT='(dialable format: A phone number format for dialing internal business extensions (for example, 2414), an operator or emergency service, or directory assistance. Calling cards cannot be used with this format.)';
  4783.             sTemp=L_IDH_redefDialableFormat_TEXT;
  4784.             break;
  4785.         case 'IDH_redefDomainNameSystemDNS':
  4786.             L_IDH_redefDomainNameSystemDNS_TEXT='(DNS: Internet service that translates a domain name representing a group of computers (for example, microsoft.com) into a numeric address. The Internet is based on numeric addresses, but domain names are used because they are easier to remember.)';
  4787.             sTemp=L_IDH_redefDomainNameSystemDNS_TEXT;
  4788.             break;
  4789.         case 'IDH_redefDominantControl':
  4790.             L_IDH_redefDominantControl_TEXT='(dominant control: The control to which other selected controls are aligned and sized. When aligning controls, selected controls align to the dominant control. When sizing controls, selected controls are assigned the dimensions of the dominant control.)';
  4791.             sTemp=L_IDH_redefDominantControl_TEXT;
  4792.             break;
  4793.         case 'IDH_redefDragHandles':
  4794.             L_IDH_redefDragHandles_TEXT='(move handle: The left border of an appointment, which you click to move the appointment. When viewing a single day in Calendar, click the left move handle and drag to move the appointment; click the top or bottom border to resize the appointment.)';
  4795.             sTemp=L_IDH_redefDragHandles_TEXT;
  4796.             break;
  4797.         case 'IDH_redefEmailSendBoxes':
  4798.             L_IDH_redefEmailSendBoxes_TEXT='(To, Cc, and Bcc boxes: A message is sent to the recipients in the To box. Recipients in the Cc (carbon copy) and Bcc (blind carbon copy) boxes also get the message; however, the names of the recipients in the Bcc box aren\'t visible to other recipients.)';
  4799.             sTemp=L_IDH_redefEmailSendBoxes_TEXT;
  4800.             break;
  4801.         case 'IDH_redefEmailServer':
  4802.             L_IDH_redefEmailServer_TEXT='(e-mail server: A computer that stores e-mail messages.)';
  4803.             sTemp=L_IDH_redefEmailServer_TEXT;
  4804.             break;
  4805.         case 'IDH_redefFavoriteWebPage':
  4806.             L_IDH_redefFavoriteWebPage_TEXT='(favorite Web page: A shortcut to a Web page that is saved in the Favorites folder.)';
  4807.             sTemp=L_IDH_redefFavoriteWebPage_TEXT;
  4808.             break;
  4809.         case 'IDH_redefFolderBar':
  4810.             L_IDH_redefFolderBar_TEXT='(Folder Banner: The horizontal bar just below the toolbars that shows the name of the current folder on the left and the icon for it on the right. To quickly view a temporary Folder List, click the name of the current folder on the Folder Banner.)';
  4811.             sTemp=L_IDH_redefFolderBar_TEXT;
  4812.             break;
  4813.         case 'IDH_redefForegroundColor':
  4814.             L_IDH_redefForegroundColor_TEXT='(foreground color: The color that is currently selected for drawing or displaying text on the screen. In monochrome displays, the foreground color is the color of a bitmap or other graphic.)';
  4815.             sTemp=L_IDH_redefForegroundColor_TEXT;
  4816.             break;
  4817.         case 'IDH_redefForm':
  4818.             L_IDH_redefForm_TEXT='(form: A way to distribute and collect information electronically. For example, a form can be available for anyone to order supplies or to post information in a public folder. All Outlook items, such as messages and appointments, are based on forms.)';
  4819.             sTemp=L_IDH_redefForm_TEXT;
  4820.             break;
  4821.         case 'IDH_redefFormat':
  4822.             L_IDH_redefFormat_TEXT='(data format: The structure or appearance of a unit of data, such as a field, or text in a message body.)';
  4823.             sTemp=L_IDH_redefFormat_TEXT;
  4824.             break;
  4825.         case 'IDH_redefFormsCache':
  4826.             L_IDH_redefFormsCache_TEXT='(forms cache: The folder located in C:\\Windows\\Forms that serves as a storage location for forms.)';
  4827.             sTemp=L_IDH_redefFormsCache_TEXT;
  4828.             break;
  4829.         case 'IDH_redefFree':
  4830.             L_IDH_redefFree_TEXT='(free: Free time appears with a clear availability indicator and is seen as available when others view your Calendar. An appointment of zero duration, while visible in the selected block of time when viewing days, shows as free time to others.)';
  4831.             sTemp=L_IDH_redefFree_TEXT;
  4832.             break;
  4833.         case 'IDH_redefFreeBusyBar':
  4834.             L_IDH_redefFreeBusyBar_TEXT='(free/busy time: In Calendar, time status and user defined labels are indicated by colors and patterns.)';
  4835.             sTemp=L_IDH_redefFreeBusyBar_TEXT;
  4836.             break;
  4837.         case 'IDH_redefFullName':
  4838.             L_IDH_redefFullName_TEXT='(full name: The first and last name for a contact, or the first and last name plus any middle name, title, and suffix (for example, Jr. or Dr.).)';
  4839.             sTemp=L_IDH_redefFullName_TEXT;
  4840.             break;
  4841.         case 'IDH_redefGateway':
  4842.             L_IDH_redefGateway_TEXT='(gateway: A device that connects different e-mail systems and transfers messages between them.)';
  4843.             sTemp=L_IDH_redefGateway_TEXT;
  4844.             break;
  4845.         case 'IDH_redefGlobalAddressList':
  4846.             L_IDH_redefGlobalAddressList_TEXT='(Global Address List: The address book that contains all user, group, and distribution list e-mail addresses in your organization. The administrator creates and maintains this address book. It may also contain public folder e-mail addresses.)';
  4847.             sTemp=L_IDH_redefGlobalAddressList_TEXT;
  4848.             break;
  4849.         case 'IDH_redefGridBlock':
  4850.             L_IDH_redefGridBlock_TEXT='(grid block: The space between two adjacent grid points.)';
  4851.             sTemp=L_IDH_redefGridBlock_TEXT;
  4852.             break;
  4853.         case 'IDH_redefGroup':
  4854.             L_IDH_redefGroup_TEXT='(group: A set of items with one common attribute; for example, priority or status. Also, to group is to combine items with a common attribute under a shared heading in a table or on a timeline.)';
  4855.             sTemp=L_IDH_redefGroup_TEXT;
  4856.             break;
  4857.         case 'IDH_redefInformationService':
  4858.             L_IDH_redefInformationService_TEXT='(information service: Settings that enable you to send, store, and receive e-mail, and that define how to store and use addresses. You can have multiple information services in one user profile.)';
  4859.             sTemp=L_IDH_redefInformationService_TEXT;
  4860.             break;
  4861.         case 'IDH_redefInternationalFormat':
  4862.             L_IDH_redefInternationalFormat_TEXT='(international format: A phone number format for dialing any call from any location or with a calling card. The format should appear this way: country code (area code) + local number. Don\'t include other punctuation, characters, or alphanumeric characters.)';
  4863.             sTemp=L_IDH_redefInternationalFormat_TEXT;
  4864.             break;
  4865.         case 'IDH_redefItem':
  4866.             L_IDH_redefItem_TEXT='(item: An item is the basic element that holds information in Outlook (similar to a file in other programs). Items include e-mail messages, appointments, contacts, tasks, journal entries, notes, posted items, and documents.)';
  4867.             sTemp=L_IDH_redefItem_TEXT;
  4868.             break;
  4869.         case 'IDH_redefJournalEntry':
  4870.             L_IDH_redefJournalEntry_TEXT='(journal entry: An item in the Journal folder that acts as a shortcut to an activity that has been recorded. You can distinguish a journal entry from other items by the clock that appears in the lower-left corner of the icon.)';
  4871.             sTemp=L_IDH_redefJournalEntry_TEXT;
  4872.             break;
  4873.         case 'IDH_redefKeyManagementServer':
  4874.             L_IDH_redefKeyManagementServer_TEXT='(Key Management server: The Microsoft Exchange Server that distributes and keeps track of private keys.)';
  4875.             sTemp=L_IDH_redefKeyManagementServer_TEXT;
  4876.             break;
  4877.         case 'IDH_redefLocale':
  4878.             L_IDH_redefLocale_TEXT='(locale: The set of information that corresponds to a given language and country. The code locale setting affects the language of terms, such as keywords, and defines locale-specific settings, such as the date formats and character sorting order.)';
  4879.             sTemp=L_IDH_redefLocale_TEXT;
  4880.             break;
  4881.         case 'IDH_redefMailbox':
  4882.             L_IDH_redefMailbox_TEXT='(mailbox: Location on a Microsoft Exchange server where your e-mail is delivered. Your administrator sets up a mailbox for each user. If you designate a personal folder file as your e-mail delivery location, messages are routed to it from your mailbox.)';
  4883.             sTemp=L_IDH_redefMailbox_TEXT;
  4884.             break;
  4885.         case 'IDH_redefMailDeliveryService':
  4886.             L_IDH_redefMailDeliveryService_TEXT='(mail delivery service: A type of information service used to configure Outlook (and other messaging programs) to send and receive e-mail. For example, with an Internet mail delivery service you send and receive messages over the Internet in Outlook.)';
  4887.             sTemp=L_IDH_redefMailDeliveryService_TEXT;
  4888.             break;
  4889.         case 'IDH_redefMailingAddress':
  4890.             L_IDH_redefMailingAddress_TEXT='(mailing address: When you create a contact, you can enter up to three addresses for it. You select one address as the mailing address, which becomes the primary address that appears in most views and which is used in mail merges in Microsoft Word.)';
  4891.             sTemp=L_IDH_redefMailingAddress_TEXT;
  4892.             break;
  4893.         case 'IDH_redefMasterCategoryList':
  4894.             L_IDH_redefMasterCategoryList_TEXT='(Master Category List: The list of categories that you can use to group items or to find items. This list contains general categories such as Business, Personal, and Phone Calls. You can add categories to and delete categories from this list.)';
  4895.             sTemp=L_IDH_redefMasterCategoryList_TEXT;
  4896.             break;
  4897.         case 'IDH_redefMessageClass':
  4898.             L_IDH_redefMessageClass_TEXT='(message class: Used by Microsoft Exchange to identify, locate, and open a form.)';
  4899.             sTemp=L_IDH_redefMessageClass_TEXT;
  4900.             break;
  4901.         case 'IDH_redefMessageHeader':
  4902.             L_IDH_redefMessageHeader_TEXT='(message header: Summary information that you download to your computer to determine whether to download, copy, or delete the entire message from the server. The header includes these fields: Subject, From, Received, Importance, Attachment, and Size.)';
  4903.             sTemp=L_IDH_redefMessageHeader_TEXT;
  4904.             break;
  4905.         case 'IDH_redefMessageList':
  4906.             L_IDH_redefMessageList_TEXT='(message list: The middle part of the main Outlook window that displays the contents of the selected folder.)';
  4907.             sTemp=L_IDH_redefMessageList_TEXT;
  4908.             break;
  4909.         case 'IDH_redefMessageTag':
  4910.             L_IDH_redefMessageTag_TEXT='(flag: A symbol that indicates there is a follow-up action needed from you or from someone else.)';
  4911.             sTemp=L_IDH_redefMessageTag_TEXT;
  4912.             break;
  4913.         case 'IDH_redefModeless':
  4914.             L_IDH_redefModeless_TEXT='(modeless: A window or dialog box that does not require the user to perform an action before the focus can be switched to another form or dialog box.)';
  4915.             sTemp=L_IDH_redefModeless_TEXT;
  4916.             break;
  4917.         case 'IDH_redefNamedExpression':
  4918.             L_IDH_redefNamedExpression_TEXT='(named argument: An argument that has a name that is predefined in a field. Instead of providing values for arguments in the order expected by the syntax, you can use named arguments to assign values in any order.)';
  4919.             sTemp=L_IDH_redefNamedExpression_TEXT;
  4920.             break;
  4921.         case 'IDH_redefNetMeeting':
  4922.             L_IDH_redefNetMeeting_TEXT='(NetMeeting: Microsoft conferencing software that you can use to communicate by both audio and video, work as a group in Windows-based programs, exchange graphics on an electronic whiteboard, transfer files, or chat by text.)';
  4923.             sTemp=L_IDH_redefNetMeeting_TEXT;
  4924.             break;
  4925.         case 'IDH_redefNewGroup':
  4926.             L_IDH_redefNewGroup_TEXT='(New group: A collection of names with a common attribute. For example, you might create a group of people with whom you discuss movies and a group of people with whom you discuss fishing.)';
  4927.             sTemp=L_IDH_redefNewGroup_TEXT;
  4928.             break;
  4929.         case 'IDH_redefNewsgroup':
  4930.             L_IDH_redefNewsgroup_TEXT='(newsgroup: A collection of messages posted by individuals to a news server, a computer maintained by a company, group, or individual. Some newsgroups are monitored, but most are not, and messages can be posted and read by anyone with access to the group.)';
  4931.             sTemp=L_IDH_redefNewsgroup_TEXT;
  4932.             break;
  4933.         case 'IDH_redefNewsServer':
  4934.             L_IDH_redefNewsServer_TEXT='(news server: A computer, maintained by a company, group, or individual, that can store messages for online discussion groups such as newsgroups or forums.)';
  4935.             sTemp=L_IDH_redefNewsServer_TEXT;
  4936.             break;
  4937.         case 'IDH_redefNNTP':
  4938.             L_IDH_redefNNTP_TEXT='(NNTP: Protocol for distributing, inquiring about, retrieving, and posting news articles, using reliable stream-based transmission of news. Designed to store articles in a central database, allowing subscribers to select only those they want to retrieve.)';
  4939.             sTemp=L_IDH_redefNNTP_TEXT;
  4940.             break;
  4941.         case 'IDH_redefNull':
  4942.             L_IDH_redefNull_TEXT='(null: A value indicating that a variable contains no valid data. Null is the result of an explicit assignment of Null to a variable or any operation between expressions that contain Null.)';
  4943.             sTemp=L_IDH_redefNull_TEXT;
  4944.             break;
  4945.         case 'IDH_redefOfflineFolderFile':
  4946.             L_IDH_redefOfflineFolderFile_TEXT='(Offline Folder file: The file on your hard disk that contains offline folders. The offline folder file has an .ost extension. You can create it automatically when you set up Outlook or when you first make a folder available offline.)';
  4947.             sTemp=L_IDH_redefOfflineFolderFile_TEXT;
  4948.             break;
  4949.         case 'IDH_redefOLEContainerControls':
  4950.             L_IDH_redefOLEContainerControls_TEXT='(OLE container control: A Visual Basic control that is used to link and embed objects from other applications in a Visual Basic application.)';
  4951.             sTemp=L_IDH_redefOLEContainerControls_TEXT;
  4952.             break;
  4953.         case 'IDH_redefOptional':
  4954.             L_IDH_redefOptional_TEXT='(optional: When an attendee is marked optional, the meeting request to that person conveys that the appointment is FYI (for your information). The person can delete the FYI appointment or view it in Calendar, but cannot accept or decline.)';
  4955.             sTemp=L_IDH_redefOptional_TEXT;
  4956.             break;
  4957.         case 'IDH_redefOutlookWebAccess':
  4958.             L_IDH_redefOutlookWebAccess_TEXT='(Outlook Web Access: If you are away from your computer, or if you share a computer with other people, you can use Outlook Web Access to gain access to your Microsoft Exchange server information securely from any browser.)';
  4959.             sTemp=L_IDH_redefOutlookWebAccess_TEXT;
  4960.             break;
  4961.         case 'IDH_redefOutOfOffice':
  4962.             L_IDH_redefOutOfOffice_TEXT='(out of office: Blocks of time marked out of office appear with a solid availability indicator and a shaded appointment background, and they are shown as unavailable when other people view your Calendar.)';
  4963.             sTemp=L_IDH_redefOutOfOffice_TEXT;
  4964.             break;
  4965.         case 'IDH_redefPersonalAddressBook':
  4966.             L_IDH_redefPersonalAddressBook_TEXT='(Personal Address Book: A customizable address book used to store personal e-mail addresses you use frequently. However, Contacts offers more advanced features for this function. Personal Address Book files have a .pab extension and can be copied to disk.)';
  4967.             sTemp=L_IDH_redefPersonalAddressBook_TEXT;
  4968.             break;
  4969.         case 'IDH_redefPersonalDistributionList':
  4970.             L_IDH_redefPersonalDistributionList_TEXT='(personal distribution list: A collection of e-mail addresses that you create and add to your Outlook Address Book as one e-mail alias. When you send a message to a distribution list, it goes to each e-mail address in the list.)';
  4971.             sTemp=L_IDH_redefPersonalDistributionList_TEXT;
  4972.             break;
  4973.         case 'IDH_redefPi':
  4974.             L_IDH_redefPi_TEXT='(pi: A mathematical constant equal to approximately 3.1415926535897932.)';
  4975.             sTemp=L_IDH_redefPi_TEXT;
  4976.             break;
  4977.         case 'IDH_redefPlaceholder':
  4978.             L_IDH_redefPlaceholder_TEXT='(placeholder: A character that masks or hides another character for security reasons. For example, when a user types a password, an asterisk is displayed on the screen to take the place of each character typed.)';
  4979.             sTemp=L_IDH_redefPlaceholder_TEXT;
  4980.             break;
  4981.         case 'IDH_redefPost':
  4982.             L_IDH_redefPost_TEXT='(post: Information that you send to a folder instead of to a person. Typically, you post information to a public folder to participate in online discussions.)';
  4983.             sTemp=L_IDH_redefPost_TEXT;
  4984.             break;
  4985.         case 'IDH_redefPostOfficeProtocolVersion3POP3':
  4986.             L_IDH_redefPostOfficeProtocolVersion3POP3_TEXT='(POP3: A common protocol that is used to retrieve e-mail messages from an Internet e-mail server.)';
  4987.             sTemp=L_IDH_redefPostOfficeProtocolVersion3POP3_TEXT;
  4988.             break;
  4989.         case 'IDH_redefPreviewPane':
  4990.             L_IDH_redefPreviewPane_TEXT='(preview pane: The area at the lower right of the Inbox where you can view the contents of the selected item without opening the item, if you have preview pane turned on.)';
  4991.             sTemp=L_IDH_redefPreviewPane_TEXT;
  4992.             break;
  4993.         case 'IDH_redefPrintStyle':
  4994.             L_IDH_redefPrintStyle_TEXT='(print style: A combination of paper and page settings that determines the way items print. Outlook provides built-in print styles, and you can create your own.)';
  4995.             sTemp=L_IDH_redefPrintStyle_TEXT;
  4996.             break;
  4997.         case 'IDH_redefPrivate':
  4998.             L_IDH_redefPrivate_TEXT='(private: Other people cannot see an item marked private, even if they have permission to access your folders.)';
  4999.             sTemp=L_IDH_redefPrivate_TEXT;
  5000.             break;
  5001.         case 'IDH_redefPropertyPage':
  5002.             L_IDH_redefPropertyPage_TEXT='(property page: A grouping of properties presented as a tabbed page of a property sheet.)';
  5003.             sTemp=L_IDH_redefPropertyPage_TEXT;
  5004.             break;
  5005.         case 'IDH_redefRecurring':
  5006.             L_IDH_redefRecurring_TEXT='(recurring: Items that occur repeatedly. For example, an appointment or task that occurs on a regular basis, such as a weekly status meeting or a monthly haircut, can be designated as recurring.)';
  5007.             sTemp=L_IDH_redefRecurring_TEXT;
  5008.             break;
  5009.         case 'IDH_redefReminders':
  5010.             L_IDH_redefReminders_TEXT='(reminder: A message that appears at a specified interval before an appointment, meeting, or task that announces when the activity is set to occur. Reminders appear any time Outlook is running, even if it isn\'t your active program.)';
  5011.             sTemp=L_IDH_redefReminders_TEXT;
  5012.             break;
  5013.         case 'IDH_redefResource':
  5014.             L_IDH_redefResource_TEXT='(resource: A room, computer, or any equipment needed at a meeting. You can look up a resource\'s availability, compare its schedule to yours, and block out time in its Calendar. You invite resources to your meetings the same way that you invite people.)';
  5015.             sTemp=L_IDH_redefResource_TEXT;
  5016.             break;
  5017.         case 'IDH_redefRule':
  5018.             L_IDH_redefRule_TEXT='(rule: One or more automatic actions taken on e-mail messages and meeting requests that meet certain conditions, along with any exceptions to those conditions. Rules are also referred to as filters.)';
  5019.             sTemp=L_IDH_redefRule_TEXT;
  5020.             break;
  5021.         case 'IDH_redefRuntimeError':
  5022.             L_IDH_redefRuntimeError_TEXT='(run-time error: An error that displays as #ERROR in a field. A run-time error results when a function attempts an operation that is not valid.)';
  5023.             sTemp=L_IDH_redefRuntimeError_TEXT;
  5024.             break;
  5025.         case 'IDH_redefSecurePasswordAuthentication':
  5026.             L_IDH_redefSecurePasswordAuthentication_TEXT='(Secure Password Authentication (SPA): A feature that allows a server to confirm the identity of the person logging on.)';
  5027.             sTemp=L_IDH_redefSecurePasswordAuthentication_TEXT;
  5028.             break;
  5029.         case 'IDH_redefSeed':
  5030.             L_IDH_redefSeed_TEXT='(seed: An initial value that is used to generate pseudorandom numbers.)';
  5031.             sTemp=L_IDH_redefSeed_TEXT;
  5032.             break;
  5033.         case 'IDH_redefServerScripts':
  5034.             L_IDH_redefServerScripts_TEXT='(server scripts: Statements embedded in an .asp file (Active Server Page). Scripts are executed by the Microsoft Internet Information Server (IIS) when a page is requested by the browser but before the content is sent to the browser.)';
  5035.             sTemp=L_IDH_redefServerScripts_TEXT;
  5036.             break;
  5037.         case 'IDH_redefSession':
  5038.             L_IDH_redefSession_TEXT='(session: A period of time during which a client uses the messaging system.)';
  5039.             sTemp=L_IDH_redefSession_TEXT;
  5040.             break;
  5041.         case 'IDH_redefShortcut':
  5042.             L_IDH_redefShortcut_TEXT='(shortcut: An icon and associated name in the Shortcuts pane in the Navigation Pane on the left side of the main Outlook window that offers quick access to a folder. You can create your own shortcuts and remove existing ones in each group.)';
  5043.             sTemp=L_IDH_redefShortcut_TEXT;
  5044.             break;
  5045.         case 'IDH_redefShortcutBar':
  5046.             L_IDH_redefShortcutBar_TEXT='(Outlook Bar: The column on the left side of the Outlook window that includes groups such as Other or Other Shortcuts and the shortcuts within each group. Click a group to show the shortcuts in the group. Click a shortcut to quickly access folders.)';
  5047.             sTemp=L_IDH_redefShortcutBar_TEXT;
  5048.             break;
  5049.         case 'IDH_redefSimpleMailTransferProtocolSMTP':
  5050.             L_IDH_redefSimpleMailTransferProtocolSMTP_TEXT='(Simple Mail Transfer Protocol (SMTP): A common protocol that is used to send e-mail messages across the Internet.)';
  5051.             sTemp=L_IDH_redefSimpleMailTransferProtocolSMTP_TEXT;
  5052.             break;
  5053.         case 'IDH_redefsRecurrence':
  5054.             L_IDH_redefsRecurrence_TEXT='(recurrence: Repeats an appointment or task at the interval that you specify.)';
  5055.             sTemp=L_IDH_redefsRecurrence_TEXT;
  5056.             break;
  5057.         case 'IDH_redefSubmitted':
  5058.             L_IDH_redefSubmitted_TEXT='(submitted: When a message is submitted, the store provider places the message in its outgoing queue, where it gets picked up by the spooler and handed to one or more transport providers for delivery.)';
  5059.             sTemp=L_IDH_redefSubmitted_TEXT;
  5060.             break;
  5061.         case 'IDH_redefTable':
  5062.             L_IDH_redefTable_TEXT='(table: A view type that displays a list of items (rows) and their attributes (columns). Use this view to display details about items. Table is the default view type for Inbox and Tasks.)';
  5063.             sTemp=L_IDH_redefTable_TEXT;
  5064.             break;
  5065.         case 'IDH_redefTarget':
  5066.             L_IDH_redefTarget_TEXT='(target: An object onto which the user drops the object being dragged.)';
  5067.             sTemp=L_IDH_redefTarget_TEXT;
  5068.             break;
  5069.         case 'IDH_redefTask':
  5070.             L_IDH_redefTask_TEXT='(task: A personal or work-related duty or errand that you want to track through completion.)';
  5071.             sTemp=L_IDH_redefTask_TEXT;
  5072.             break;
  5073.         case 'IDH_redefTaskList':
  5074.             L_IDH_redefTaskList_TEXT='(task list: A list of tasks that appears in the Tasks folder and in the TaskPad in Calendar.)';
  5075.             sTemp=L_IDH_redefTaskList_TEXT;
  5076.             break;
  5077.         case 'IDH_redefTaskPad':
  5078.             L_IDH_redefTaskPad_TEXT='(TaskPad: The list of tasks in Calendar.)';
  5079.             sTemp=L_IDH_redefTaskPad_TEXT;
  5080.             break;
  5081.         case 'IDH_redefTaskRequest':
  5082.             L_IDH_redefTaskRequest_TEXT='(task request: A request sent in an e-mail message asking the recipient to complete a task. If the recipient accepts the task, it is added to the recipient\'s task list, and the recipient becomes the new owner of the task.)';
  5083.             sTemp=L_IDH_redefTaskRequest_TEXT;
  5084.             break;
  5085.         case 'IDH_redefTenative':
  5086.             L_IDH_redefTenative_TEXT='(tentative: Blocks of time that are marked tentative appear with a striped availability indicator and are shown as available when other people view your Calendar.)';
  5087.             sTemp=L_IDH_redefTenative_TEXT;
  5088.             break;
  5089.         case 'IDH_redefTimeline':
  5090.             L_IDH_redefTimeline_TEXT='(timeline: A view type that displays items from left to right on a time scale. Use this view to display items in relation to time. Timeline is the default view type for Journal.)';
  5091.             sTemp=L_IDH_redefTimeline_TEXT;
  5092.             break;
  5093.         case 'IDH_redefUnbound':
  5094.             L_IDH_redefUnbound_TEXT='(unbound: A control that is not related to a field.)';
  5095.             sTemp=L_IDH_redefUnbound_TEXT;
  5096.             break;
  5097.         case 'IDH_redefUpdateList':
  5098.             L_IDH_redefUpdateList_TEXT='(update list: A list that includes the name of the person who originally sent a task request plus the names of everyone who received the task request, reassigned the task to someone else, or chose to keep an updated copy of the task in their task list.)';
  5099.             sTemp=L_IDH_redefUpdateList_TEXT;
  5100.             break;
  5101.         case 'IDH_redefVarientExpression':
  5102.             L_IDH_redefVarientExpression_TEXT='(variant expression: Any expression that can evaluate to numeric, string, or date data, as well as the special values Empty and Null.)';
  5103.             sTemp=L_IDH_redefVarientExpression_TEXT;
  5104.             break;
  5105.         case 'IDH_redefViews':
  5106.             L_IDH_redefViews_TEXT='(view: Views give you different ways to look at the same information in a folder by putting it in different arrangements and formats. There are standard views for each folder. You can also create custom views.)';
  5107.             sTemp=L_IDH_redefViews_TEXT;
  5108.             break;
  5109.         case 'IDH_redefViewType':
  5110.             L_IDH_redefViewType_TEXT='(view type: The basic structure of a view. When you create a view, you must first select one of five view types (table, timeline, day/week/month, card, or icon) to determine how information will be arranged and formatted in your new view.)';
  5111.             sTemp=L_IDH_redefViewType_TEXT;
  5112.             break;
  5113.         case 'IDH_redefWeekNumber':
  5114.             L_IDH_redefWeekNumber_TEXT='(week number: The weeks of the year are assigned a number from 1 to 52, called week numbers. When you turn on week numbers, they appear on the left side of the Date Navigator in Calendar.)';
  5115.             sTemp=L_IDH_redefWeekNumber_TEXT;
  5116.             break;
  5117.         case 'IDH_redefZorder':
  5118.             L_IDH_redefZorder_TEXT='(z-order: The visual layering of controls on a form along the z-axis (depth). The z-order determines which controls are in front of other controls.)';
  5119.             sTemp=L_IDH_redefZorder_TEXT;
  5120.             break;
  5121.         case 'olalternatecalendar':
  5122.             L_olalternatecalendar_TEXT='(alternate calendar: The calendar selected from within Outlook.)';
  5123.             sTemp=L_olalternatecalendar_TEXT;
  5124.             break;
  5125.         case 'olarrangement':
  5126.             L_olarrangement_TEXT='(arrangement: A predefined combination of grouped and sorted messages in table view.)';
  5127.             sTemp=L_olarrangement_TEXT;
  5128.             break;
  5129.         case 'olauthentication':
  5130.             L_olauthentication_TEXT='(authentication: The process for verifying that people are who they claim to be. For example, confirming the source and integrity of a sender\'s digital signature by verifying it with the issuing certificate authority (CA).)';
  5131.             sTemp=L_olauthentication_TEXT;
  5132.             break;
  5133.         case 'OlAvailabilityIndicator':
  5134.             L_OlAvailabilityIndicator_TEXT='(availability indicator: Appears to the left of a meeting or appointment (or all the way around the item when selected), indicating time status as free, tentative, busy, out of office, or no information available. Visible only in Day and Work Week view.)';
  5135.             sTemp=L_OlAvailabilityIndicator_TEXT;
  5136.             break;
  5137.         case 'OlBcc':
  5138.             L_OlBcc_TEXT='(Bcc: An abbreviation for blind carbon copy. If you add a recipient\'s name to this box in a message, a copy of the message is sent to that recipient, and the recipient\'s name is not visible to other recipients of the message.)';
  5139.             sTemp=L_OlBcc_TEXT;
  5140.             break;
  5141.         case 'olcer':
  5142.             L_olcer_TEXT='(.cer file: A file that contains a certificate with a public key but no private key. Import the .cer files into Contacts by clicking Import in the Certificates tab, and then use the certificate to send encrypted messages.)';
  5143.             sTemp=L_olcer_TEXT;
  5144.             break;
  5145.         case 'OlCertificate':
  5146.             L_OlCertificate_TEXT='(certificate: A digital means of proving your identity. When you send a digitally signed message you are sending your certificate and public key. Certificates are issued by a certification authority, and like a driver\'s license, can expire or be revoked.)';
  5147.             sTemp=L_OlCertificate_TEXT;
  5148.             break;
  5149.         case 'olcertificateauthority':
  5150.             L_olcertificateauthority_TEXT='(certificate authority (CA): An entity, similar to a notary public, that issues digital certificates, keeps track of who is assigned to a certificate, signs certificates to verify their validity, and tracks which certificates are revoked or expired.)';
  5151.             sTemp=L_olcertificateauthority_TEXT;
  5152.             break;
  5153.         case 'olcertificaterevocationchecking':
  5154.             L_olcertificaterevocationchecking_TEXT='(certificate revocation checking: A way to see if a certificate used to sign a message is valid. Outlook can check the status of the certificate from the issuing certification authority\'s database. Also known as the certificate revocation list (CRL).)';
  5155.             sTemp=L_olcertificaterevocationchecking_TEXT;
  5156.             break;
  5157.         case 'olcertificationhierarchy':
  5158.             L_olcertificationhierarchy_TEXT='(certification hierarchy: A structure whereby one certificate authority verifies another certification authority\'s certificates by digitally signing them. This establishes a \"chain of trust\" that increases confidence that a certificate is authentic.)';
  5159.             sTemp=L_olcertificationhierarchy_TEXT;
  5160.             break;
  5161.         case 'olconferenceresource':
  5162.             L_olconferenceresource_TEXT='(conference resource: A Microsoft Exchange mailbox that allocates a specific number of connections. The resource serves as a virtual room for your online meeting. You invite the resource to an online meeting just as you would reserve a room for a meeting.)';
  5163.             sTemp=L_olconferenceresource_TEXT;
  5164.             break;
  5165.         case 'OlContact':
  5166.             L_OlContact_TEXT='(contact: Person, inside or outside of your organization, about whom you can save several types of information, such as street and e-mail addresses, telephone and fax numbers, and Web page URLs.)';
  5167.             sTemp=L_OlContact_TEXT;
  5168.             break;
  5169.         case 'OlContactIndex':
  5170.             L_OlContactIndex_TEXT='(Contact Index: Set of buttons used to move through contact items displayed in Address Cards or Detailed Address Cards view. The Contact Index moves the focus to the first contact whose name begins with the selected character.)';
  5171.             sTemp=L_OlContactIndex_TEXT;
  5172.             break;
  5173.         case 'olcookie':
  5174.             L_olcookie_TEXT='(cookie: A block of data placed by a server on a client computer that identifies the client for future connections.)';
  5175.             sTemp=L_olcookie_TEXT;
  5176.             break;
  5177.         case 'oldecrypt':
  5178.             L_oldecrypt_TEXT='(decrypt: The process of converting cipher (scrambled) text back into plain, readable text. Recipients decrypt (unlocks) the e-mail messages sent to them using their private key.)';
  5179.             sTemp=L_oldecrypt_TEXT;
  5180.             break;
  5181.         case 'OlDefaultDataFile':
  5182.             L_OlDefaultDataFile_TEXT='(default data file: The Personal Folders file (.pst) data file that is used as the main delivery location for your e-mail messages.)';
  5183.             sTemp=L_OlDefaultDataFile_TEXT;
  5184.             break;
  5185.         case 'oldes':
  5186.             L_oldes_TEXT='(3DES: An encryption algorithm based on the Data Encryption Standard (DES). Triple DES (3DES) repeats DES three times. Consequently, 3DES runs slower than standard DES. However, it is more secure.)';
  5187.             sTemp=L_oldes_TEXT;
  5188.             break;
  5189.         case 'OlDigitalId':
  5190.             L_OlDigitalId_TEXT='(digital ID: Contains a private key that stays on the sender\'s computer and a certificate (with a public key). The certificate is sent with digitally signed messages. Recipients save the certificate and use the public key to encrypt messages to the sender.)';
  5191.             sTemp=L_OlDigitalId_TEXT;
  5192.             break;
  5193.         case 'oldigitalsignature':
  5194.             L_oldigitalsignature_TEXT='(digital signature: An application of an algorithm to the message data used to prove to the recipient that the message is from the sender (not an imposter) and that the message has not been altered. Includes the sender\'s certificate (with the public key).)';
  5195.             sTemp=L_oldigitalsignature_TEXT;
  5196.             break;
  5197.         case 'OlEmailAccount':
  5198.             L_OlEmailAccount_TEXT='(e-mail account: The server name, user name, password, and e-mail address used by Outlook to connect to an e-mail service. You create the e-mail account in Outlook by using information provided by your administrator or Internet service provider (ISP).)';
  5199.             sTemp=L_OlEmailAccount_TEXT;
  5200.             break;
  5201.         case 'olencrypt':
  5202.             L_olencrypt_TEXT='(encrypt: The process of converting plain, readable text into cipher (scrambled) text. The sender uses the recipient\'s public key to encrypt (lock) the e-mail message and attachments.)';
  5203.             sTemp=L_olencrypt_TEXT;
  5204.             break;
  5205.         case 'OlEncryption':
  5206.             L_OlEncryption_TEXT='(encryption: The process of encoding data to prevent unauthorized access. An encrypted message is unreadable to all but the recipient, who has a public key that will decrypt it because the key matches the private key that the sender used to encrypt it.)';
  5207.             sTemp=L_OlEncryption_TEXT;
  5208.             break;
  5209.         case 'olepf':
  5210.             L_olepf_TEXT='(.epf file: A file type that Outlook uses to import or export a digital ID (certificate and private keys) obtained from the Microsoft Exchange Key Management Server.)';
  5211.             sTemp=L_olepf_TEXT;
  5212.             break;
  5213.         case 'oleventaddress':
  5214.             L_oleventaddress_TEXT='(event address: An address similar to a URL that provides network access to a Microsoft Windows Media Services event, such as a live broadcast. Attendees go to this address to view the event from their computers.)';
  5215.             sTemp=L_oleventaddress_TEXT;
  5216.             break;
  5217.         case 'olhacker':
  5218.             L_olhacker_TEXT='(hacker: A term commonly used to refer to someone who illegally gains access to a computer system or network with the intent of causing damage.)';
  5219.             sTemp=L_olhacker_TEXT;
  5220.             break;
  5221.         case 'OlHttp':
  5222.             L_OlHttp_TEXT='(HTTP (Hypertext Transfer Protocol): Protocol that is used when you access Web pages from the Internet. Outlook uses HTTP as an e-mail protocol.)';
  5223.             sTemp=L_OlHttp_TEXT;
  5224.             break;
  5225.         case 'OlImap':
  5226.             L_OlImap_TEXT='(IMAP (Internet Message Access Protocol): Unlike Internet e-mail protocols such as POP3, IMAP creates folders on a server to store/organize messages for retrieval by other computers. You can read message headers only and select which messages to download.)';
  5227.             sTemp=L_OlImap_TEXT;
  5228.             break;
  5229.         case 'OlInfobar':
  5230.             L_OlInfobar_TEXT='(InfoBar: Banner near the top of an open e-mail message, appointment, contact, or task. Tells you if a message has been replied to or forwarded, along with the online status of a contact who is using Instant Messaging, and so on.)';
  5231.             sTemp=L_OlInfobar_TEXT;
  5232.             break;
  5233.         case 'olinvalid':
  5234.             L_olinvalid_TEXT='(invalid: Refers to a certificate with a status that Outlook has checked against a certificate authority\'s database and found to not be legitimate or not current. The certificate might also be expired or revoked.)';
  5235.             sTemp=L_olinvalid_TEXT;
  5236.             break;
  5237.         case 'oljunksenderslist':
  5238.             L_oljunksenderslist_TEXT='(Blocked Senders List: A list of domain names and e-mail addresses that you want to be blocked. E-mail addresses and domain names on this list are always treated as junk e-mail or spam.)';
  5239.             sTemp=L_oljunksenderslist_TEXT;
  5240.             break;
  5241.         case 'olkerberosprotocol':
  5242.             L_olkerberosprotocol_TEXT='(Kerberos protocol: A network security protocol that uses cryptography to provide a mutual authentication between a client and a server or between one server and another before a network connection is opened between them.)';
  5243.             sTemp=L_olkerberosprotocol_TEXT;
  5244.             break;
  5245.         case 'olnavigationpane':
  5246.             L_olnavigationpane_TEXT='(Navigation Pane: The column on the left side of the Outlook window that includes panes such as Shortcuts or Mail and the shortcuts or folders within each pane. Click a folder to show the items in the folder.)';
  5247.             sTemp=L_olnavigationpane_TEXT;
  5248.             break;
  5249.         case 'olnonrepudiation':
  5250.             L_olnonrepudiation_TEXT='(nonrepudiation: The inability of senders to deny responsibility for their e-mail message, and the inability of recipients to claim they never got the message. Both digital signatures and S/MIME receipts assist in nonrepudiation.)';
  5251.             sTemp=L_olnonrepudiation_TEXT;
  5252.             break;
  5253.         case 'OlOutlookUserProfile':
  5254.             L_OlOutlookUserProfile_TEXT='(Outlook user profile: A group of e-mail accounts and address books. Typically, a user needs only one but can create any number, each with a set of e-mail accounts and address books. Multiple profiles are useful if more than one person uses the computer.)';
  5255.             sTemp=L_OlOutlookUserProfile_TEXT;
  5256.             break;
  5257.         case 'OlOwnerPermission':
  5258.             L_OlOwnerPermission_TEXT='(Owner permission: With Owner permission you can create, read, modify, and delete all items and files and create subfolders. As folder owner, you can change the permission level that others have for the folder. This permission does not apply to delegates.)';
  5259.             sTemp=L_OlOwnerPermission_TEXT;
  5260.             break;
  5261.         case 'OlPersonalFoldersFile':
  5262.             L_OlPersonalFoldersFile_TEXT='(Personal Folders file (.pst): Data file that stores your messages and other items on your computer. You can assign a .pst file to be the default delivery location for e-mail messages. You can use a .pst to organize and back up items for safekeeping.)';
  5263.             sTemp=L_OlPersonalFoldersFile_TEXT;
  5264.             break;
  5265.         case 'olpfx':
  5266.             L_olpfx_TEXT='(.pfx file: A Personal Exchange File type that Outlook uses to import or export a digital ID (certificate and private keys) used in S\\MIME security.)';
  5267.             sTemp=L_olpfx_TEXT;
  5268.             break;
  5269.         case 'OlPrimaryCalendar':
  5270.             L_OlPrimaryCalendar_TEXT='(primary calendar: The calendar that is selected in the regional options in Control Panel or the system calendar.)';
  5271.             sTemp=L_OlPrimaryCalendar_TEXT;
  5272.             break;
  5273.         case 'olprivatekey':
  5274.             L_olprivatekey_TEXT='(private key: The secret key kept on the sender\'s computer that the sender uses to digitally sign messages to recipients and to decrypt (unlock) messages from recipients. Private keys should be password protected.)';
  5275.             sTemp=L_olprivatekey_TEXT;
  5276.             break;
  5277.         case 'olpublickey':
  5278.             L_olpublickey_TEXT='(public key: The key a sender gives to a recipient so that the recipient can verify the sender\'s signature and confirm that the message was not altered. Recipients also use the public key to encrypt (lock) e-mail messages to the sender.)';
  5279.             sTemp=L_olpublickey_TEXT;
  5280.             break;
  5281.         case 'olremoteprocedurecallrpc':
  5282.             L_olremoteprocedurecallrpc_TEXT='(remote procedure call (RPC): In programming, a request by one program to a second program on a remote system. The second program generally performs a task and returns the results of that task to the first program.)';
  5283.             sTemp=L_olremoteprocedurecallrpc_TEXT;
  5284.             break;
  5285.         case 'olrootauthority':
  5286.             L_olrootauthority_TEXT='(root authority: The certification authority (CA) at the top of a certification hierarchy (known as a \"chain of trust\") with several other certificate authorities; each verifying the authenticity of the next CA. The root CA has a self-signed certificate.)';
  5287.             sTemp=L_olrootauthority_TEXT;
  5288.             break;
  5289.         case 'olsearchfolders':
  5290.             L_olsearchfolders_TEXT='(Search Folders: Virtual folders that contain views of all e-mail items matching specific search criteria. The items remain stored in one or more Outlook folders.)';
  5291.             sTemp=L_olsearchfolders_TEXT;
  5292.             break;
  5293.         case 'OlSecondaryCalendar':
  5294.             L_OlSecondaryCalendar_TEXT='(secondary calendar: The alternate calendar that is selected from within Outlook. The secondary calendar appears when dual calendar support is enabled.)';
  5295.             sTemp=L_OlSecondaryCalendar_TEXT;
  5296.             break;
  5297.         case 'olsecuritylabel':
  5298.             L_olsecuritylabel_TEXT='(security label: A secure e-mail feature that lets you add sensitivity labels, such as Internal Use Only, to the message header. Security labels in your organization are controlled by security policies set up by your e-mail administrator.)';
  5299.             sTemp=L_olsecuritylabel_TEXT;
  5300.             break;
  5301.         case 'OlSendReceiveGroup':
  5302.             L_OlSendReceiveGroup_TEXT='(Send Receive group: E-mail accounts and folders that you can group and set common options for, such as download headers or messages, size limits on downloaded messages, behavior online vs. offline, and time interval for connecting to server.)';
  5303.             sTemp=L_OlSendReceiveGroup_TEXT;
  5304.             break;
  5305.         case 'OlShortcutGroup':
  5306.             L_OlShortcutGroup_TEXT='(shortcut group: One of the groups of shortcuts to folders that can be displayed in the Shortcuts pane.)';
  5307.             sTemp=L_OlShortcutGroup_TEXT;
  5308.             break;
  5309.         case 'olshortcutspane':
  5310.             L_olshortcutspane_TEXT='(Shortcuts pane: The area in the Navigation Pane that contains shortcuts and shortcut groups. It can be accessed by using the Shortcuts button at the bottom of the Navigation Pane. Click a group in the Shortcuts pane to show the shortcuts in the group.)';
  5311.             sTemp=L_olshortcutspane_TEXT;
  5312.             break;
  5313.         case 'olsmime':
  5314.             L_olsmime_TEXT='(S/MIME: Secure Multipurpose Internet Mail Extensions (S/MIME) is a specification for secure e-mail messages that uses the X.509 format for digital certificates and uses various encryption algorithms such as 3DES.)';
  5315.             sTemp=L_olsmime_TEXT;
  5316.             break;
  5317.         case 'olsmimereceipt':
  5318.             L_olsmimereceipt_TEXT='(S/MIME receipt: An e-mail security feature used to request confirmation that a message was received unaltered and information about who opened the message and when it was opened. This verification information is returned as a message to your Inbox.)';
  5319.             sTemp=L_olsmimereceipt_TEXT;
  5320.             break;
  5321.         case 'OlTemplate':
  5322.             L_OlTemplate_TEXT='(template: A special kind of document that can be used as a master document. Outlook templates have the file name extension of .oft.)';
  5323.             sTemp=L_OlTemplate_TEXT;
  5324.             break;
  5325.         case 'oltoken':
  5326.             L_oltoken_TEXT='(token: A special random text string issued to Outlook by the Microsoft Exchange server to facilitate enrollment in Key Management Service (KMS). Outlook then uses the token to send a secure response to the Exchange server to complete KMS enrollment.)';
  5327.             sTemp=L_oltoken_TEXT;
  5328.             break;
  5329.         case 'oltrust':
  5330.             L_oltrust_TEXT='(trust: Indicates whether you trust the individual or group to whom the certificate is issued. The default setting is Inherit Trust from Issuer, which means that the certificate is trusted because the issuer, usually a certificate authority, is trusted.)';
  5331.             sTemp=L_oltrust_TEXT;
  5332.             break;
  5333.         case 'oltrustedrecipientslist':
  5334.             L_oltrustedrecipientslist_TEXT='(Safe Recipients List: A list of mailing lists or other subscription domain names and e-mail addresses that you belong to and want to receive messages from. Messages sent to these addresses will not be treated as junk e-mail.)';
  5335.             sTemp=L_oltrustedrecipientslist_TEXT;
  5336.             break;
  5337.         case 'oltrustedsenderslist':
  5338.             L_oltrustedsenderslist_TEXT='(Safe Senders List: A list of domain names and e-mail addresses that you want to receive messages from. E-mail addresses in Contacts and in the Global Address Book are included in this list by default.)';
  5339.             sTemp=L_oltrustedsenderslist_TEXT;
  5340.             break;
  5341.         case 'olvalid':
  5342.             L_olvalid_TEXT='(valid: Refers to a certificate with a status that Outlook has checked against a certificate authority\'s database and found to be legitimate and current. The certificate is not expired or revoked.)';
  5343.             sTemp=L_olvalid_TEXT;
  5344.             break;
  5345.         case 'olvirtualprivatenetworkvpn':
  5346.             L_olvirtualprivatenetworkvpn_TEXT='(virtual private network (VPN): Extension of a private network encompassing encapsulated, encrypted, and authenticated links across shared or public networks. VPN connections provide remote access and connections to private networks over the Internet.)';
  5347.             sTemp=L_olvirtualprivatenetworkvpn_TEXT;
  5348.             break;
  5349.         case 'OlWebProtocolToConnect':
  5350.             L_OlWebProtocolToConnect_TEXT='(Web protocol to connect: To see if you are using this, on the Tools menu, click E-mail Accounts, click View or change existing e-mail accounts, and then click Next. In the list, it will say Web protocol next to Microsoft Exchange Server if you are.)';
  5351.             sTemp=L_OlWebProtocolToConnect_TEXT;
  5352.             break;
  5353.         case 'reBanner':
  5354.             L_reBanner_TEXT='(banner: Event or holiday name that appears at the top of the dates you specify in Calendar. A banner can span multiple days. Items in banners are marked as free time and are represented by the color white when you view your Calendar.)';
  5355.             sTemp=L_reBanner_TEXT;
  5356.             break;
  5357.         case 'reBusy':
  5358.             L_reBusy_TEXT='(busy: Blocks of time that are marked busy appear with a solid availability indicator and are shown as unavailable when other people view your Calendar.)';
  5359.             sTemp=L_reBusy_TEXT;
  5360.             break;
  5361.         case 'rehowPage':
  5362.             L_rehowPage_TEXT='(page: Another term for tab. The term page is used instead of tab in the Outlook Form design interface. For example, a form based on an e-mail message has a Message page.)';
  5363.             sTemp=L_rehowPage_TEXT;
  5364.             break;
  5365.         case 'rehowValidationFormula':
  5366.             L_rehowValidationFormula_TEXT='(validation formula: Checks the data in a field as it is entered. It sets limits or conditions on what can be entered.)';
  5367.             sTemp=L_rehowValidationFormula_TEXT;
  5368.             break;
  5369.         case 'rerefMeetingSelectionBars':
  5370.             L_rerefMeetingSelectionBars_TEXT='(meeting selection bars: The vertical bars that you drag to select a meeting time.)';
  5371.             sTemp=L_rerefMeetingSelectionBars_TEXT;
  5372.             break;
  5373.         case 'rnconDatepicker':
  5374.             L_rnconDatepicker_TEXT='(Date Navigator: The small calendar that displays the current month in Calendar. It provides a quick and easy way to move appointments and to view other dates.)';
  5375.             sTemp=L_rnconDatepicker_TEXT;
  5376.             break;
  5377.  
  5378.         // PowerPoint
  5379.  
  5380.         case 'IDH_ppdefAnimate':
  5381.             L_IDH_ppdefAnimate_TEXT='(animate: To add a special visual or sound effect to text or an object. For example, you can have your text bullet points fly in from the left, one word at a time, or hear the sound of applause when a picture is uncovered.)';
  5382.             sTemp=L_IDH_ppdefAnimate_TEXT;
  5383.             break;
  5384.         case 'IDH_ppdefBroadcast':
  5385.             L_IDH_ppdefBroadcast_TEXT='(presentation broadcast: A feature that allows you to run a presentation over the Web. The presentation is saved in HTML format and can contain audio and video. It can also be recorded and saved to be viewed later.)';
  5386.             sTemp=L_IDH_ppdefBroadcast_TEXT;
  5387.             break;
  5388.         case 'IDH_ppdefCustomShow':
  5389.             L_IDH_ppdefCustomShow_TEXT='(custom show: A presentation within a presentation in which you group slides in an existing presentation so that you can show that section of the presentation to a particular audience.)';
  5390.             sTemp=L_IDH_ppdefCustomShow_TEXT;
  5391.             break;
  5392.         case 'IDH_ppdefLobbyPage':
  5393.             L_IDH_ppdefLobbyPage_TEXT='(lobby page: A page of information about the broadcast that is displayed in the viewer\'s browser before the broadcast begins. It can contain a title, subject, host\'s name, information about the broadcast, and a countdown to the time of the broadcast.)';
  5394.             sTemp=L_IDH_ppdefLobbyPage_TEXT;
  5395.             break;
  5396.         case 'PPAnimationScheme':
  5397.             L_PPAnimationScheme_TEXT='(animation scheme: Adds preset visual effects to text on slides. Ranging from subtle to exciting, each scheme usually includes an effect for the slide title and an effect that is applied to bullets or paragraphs on a slide.)';
  5398.             sTemp=L_PPAnimationScheme_TEXT;
  5399.             break;
  5400.         case 'PPAntiAliasing':
  5401.             L_PPAntiAliasing_TEXT='(anti-aliasing: The smoothing of jagged edges in graphical elements and text. Anti-aliasing softens the roughness of jagged lines or curves by shading neighboring pixels.)';
  5402.             sTemp=L_PPAntiAliasing_TEXT;
  5403.             break;
  5404.         case 'PPChangeMarker':
  5405.             L_PPChangeMarker_TEXT='(change marker: An icon that designates a change made by a reviewer to a presentation.)';
  5406.             sTemp=L_PPChangeMarker_TEXT;
  5407.             break;
  5408.         case 'PPChartEffectOptions':
  5409.             L_PPChartEffectOptions_TEXT='(chart effect options: Animation enhancements that let you apply effects to a chart by series, category, or element in a series or category.)';
  5410.             sTemp=L_PPChartEffectOptions_TEXT;
  5411.             break;
  5412.         case 'PPCustomAnimationList':
  5413.             L_PPCustomAnimationList_TEXT='(Custom Animation list: The list of animation sequences for a slide. Items are listed in the order in which they are added, and include icons that indicate timing in relation to other animation events.)';
  5414.             sTemp=L_PPCustomAnimationList_TEXT;
  5415.             break;
  5416.         case 'ppdefActionButton':
  5417.             L_ppdefActionButton_TEXT='(action button: A ready-made button that you can insert into your presentation and define hyperlinks for.)';
  5418.             sTemp=L_ppdefActionButton_TEXT;
  5419.             break;
  5420.         case 'ppdefAutoLayout':
  5421.             L_ppdefAutoLayout_TEXT='(AutoLayout: An action that automatically adjusts the layout if you insert items that don\'t fit the original layout. You can undo it using the Automatic Layout Options button.)';
  5422.             sTemp=L_ppdefAutoLayout_TEXT;
  5423.             break;
  5424.         case 'ppdefAutoshape':
  5425.             L_ppdefAutoshape_TEXT='(AutoShapes: A group of ready-made shapes that includes such basic shapes as rectangles and circles, plus a variety of lines and connectors, block arrows, flowchart symbols, stars and banners, and callouts.)';
  5426.             sTemp=L_ppdefAutoshape_TEXT;
  5427.             break;
  5428.         case 'ppdefBackgroundColor':
  5429.             L_ppdefBackgroundColor_TEXT='(background color: The underlying color of a slide.)';
  5430.             sTemp=L_ppdefBackgroundColor_TEXT;
  5431.             break;
  5432.         case 'ppdefBackgroundGraphics':
  5433.             L_ppdefBackgroundGraphics_TEXT='(background graphics: Any graphics on a slide, including drawing objects, patterns in a background fill, and pictures.)';
  5434.             sTemp=L_ppdefBackgroundGraphics_TEXT;
  5435.             break;
  5436.         case 'ppdefBorder':
  5437.             L_ppdefBorder_TEXT='(border: The visible line around the edge of an object. For example, the four lines of a rectangle that comprise its border.)';
  5438.             sTemp=L_ppdefBorder_TEXT;
  5439.             break;
  5440.         case 'ppdefBoundingBox':
  5441.             L_ppdefBoundingBox_TEXT='(bounding box: The smallest rectangle that can enclose the text in a text frame. Knowing the position and dimensions of text bounding boxes allows you to overlap shapes on a slide without covering up any text.)';
  5442.             sTemp=L_ppdefBoundingBox_TEXT;
  5443.             break;
  5444.         case 'ppdefColorScheme':
  5445.             L_ppdefColorScheme_TEXT='(color scheme: A set of eight balanced colors that you can apply to slides, notes pages, or audience handouts. A color scheme consists of a background color, a color for lines and text, and six other colors selected to make slides easy to read.)';
  5446.             sTemp=L_ppdefColorScheme_TEXT;
  5447.             break;
  5448.         case 'ppdefContentTemplate':
  5449.             L_ppdefContentTemplate_TEXT='(content template: A design template that also contains text suggestions on each slide. You replace the text suggestions with the text that you want. A content template contains a slide master and an optional title master.)';
  5450.             sTemp=L_ppdefContentTemplate_TEXT;
  5451.             break;
  5452.         case 'ppdefDatasheet':
  5453.             L_ppdefDatasheet_TEXT='(datasheet: A table included with a chart that provides sample information showing where to type your own row and column labels and data.)';
  5454.             sTemp=L_ppdefDatasheet_TEXT;
  5455.             break;
  5456.         case 'ppdefDefaultShape':
  5457.             L_ppdefDefaultShape_TEXT='(default shape: A virtual shape that contains default formatting properties for new shapes. Each presentation contains one default shape.)';
  5458.             sTemp=L_ppdefDefaultShape_TEXT;
  5459.             break;
  5460.         case 'ppdefExtraColors':
  5461.             L_ppdefExtraColors_TEXT='(extra colors: Non-scheme colors that are used for special purposes. They appear in color palettes displayed by dialog box controls and toolbar buttons. Color scheme changes do not affect available extra colors or objects formatted with extra colors.)';
  5462.             sTemp=L_ppdefExtraColors_TEXT;
  5463.             break;
  5464.         case 'ppdefFreeform':
  5465.             L_ppdefFreeform_TEXT='(freeform: Any shape that you draw by using the Curve, Freeform, and Scribble tools. Freeform shapes can include straight lines and freehand curves. They can be drawn opened or closed and can be edited by using the drawing tools.)';
  5466.             sTemp=L_ppdefFreeform_TEXT;
  5467.             break;
  5468.         case 'ppdefGrid':
  5469.             L_ppdefGrid_TEXT='(grid: A set of intersecting lines used to align objects.)';
  5470.             sTemp=L_ppdefGrid_TEXT;
  5471.             break;
  5472.         case 'ppdefGuides':
  5473.             L_ppdefGuides_TEXT='(guides: Nonprinting straight lines, both horizontal and vertical, used to visually align objects.)';
  5474.             sTemp=L_ppdefGuides_TEXT;
  5475.             break;
  5476.         case 'ppdefHighContrast':
  5477.             L_ppdefHighContrast_TEXT='(high contrast: An accessibility setting that changes the appearance of displayed items on your screen by enlarging windows, toolbar buttons, and fonts, and displaying them in black and white.)';
  5478.             sTemp=L_ppdefHighContrast_TEXT;
  5479.             break;
  5480.         case 'ppdefInteractiveEffect':
  5481.             L_ppdefInteractiveEffect_TEXT='(animation trigger: An animation option that can be set so that the animation plays when a specified item is clicked.)';
  5482.             sTemp=L_ppdefInteractiveEffect_TEXT;
  5483.             break;
  5484.         case 'ppdefLayout':
  5485.             L_ppdefLayout_TEXT='(layout: The arrangement of elements, such as title and subtitle text, lists, pictures, tables, charts, AutoShapes, and movies, on a chart.)';
  5486.             sTemp=L_ppdefLayout_TEXT;
  5487.             break;
  5488.         case 'ppdefMaster':
  5489.             L_ppdefMaster_TEXT='(master: A slide view or page on which you define formatting for all slides or pages in your presentation. Each presentation has a master for each key component: slides, title slides, speaker\'s notes, and audience handouts.)';
  5490.             sTemp=L_ppdefMaster_TEXT;
  5491.             break;
  5492.         case 'ppdefMasterText':
  5493.             L_ppdefMasterText_TEXT='(master text: The slide text on the slide master. The master text determines the format of text on all slides as well as the shape of text placeholders and their placement on slides.)';
  5494.             sTemp=L_ppdefMasterText_TEXT;
  5495.             break;
  5496.         case 'ppdefNotesDatabase':
  5497.             L_ppdefNotesDatabase_TEXT='(Notes database: A collection of documents and their forms, views, and folders that is saved under one name.)';
  5498.             sTemp=L_ppdefNotesDatabase_TEXT;
  5499.             break;
  5500.         case 'ppdefNotesDocument':
  5501.             L_ppdefNotesDocument_TEXT='(Notes document: A document that consists of fields, text, numbers, graphics, and so on. Information may be entered by a user, imported from other applications, or linked to another application and dynamically updated.)';
  5502.             sTemp=L_ppdefNotesDocument_TEXT;
  5503.             break;
  5504.         case 'ppdefNotesForm':
  5505.             L_ppdefNotesForm_TEXT='(Notes form: A form that can contain fields, static text, graphics, and special objects, and that controls how you edit, display, and print documents.)';
  5506.             sTemp=L_ppdefNotesForm_TEXT;
  5507.             break;
  5508.         case 'ppdefNotesPages':
  5509.             L_ppdefNotesPages_TEXT='(notes pages: Printed pages that display author notes beneath the slide that the notes accompany.)';
  5510.             sTemp=L_ppdefNotesPages_TEXT;
  5511.             break;
  5512.         case 'ppdefNotesPane':
  5513.             L_ppdefNotesPane_TEXT='(notes pane: The pane in normal view in which you type notes that you want to accompany a slide. You print these notes as notes pages or have them display when you save a presentation as a Web page.)';
  5514.             sTemp=L_ppdefNotesPane_TEXT;
  5515.             break;
  5516.         case 'ppdefParagraph':
  5517.             L_ppdefParagraph_TEXT='(paragraph: Text that has a carriage return (hard return) at the end of it, such as when you press ENTER. Each item in a bulleted or numbered list is a paragraph; a title or subtitle is also a paragraph.)';
  5518.             sTemp=L_ppdefParagraph_TEXT;
  5519.             break;
  5520.         case 'ppdefPicture':
  5521.             L_ppdefPicture_TEXT='(picture: A file (such as a metafile) that you can ungroup and manipulate as two or more objects, or a file that stays as a single object (such as bitmaps).)';
  5522.             sTemp=L_ppdefPicture_TEXT;
  5523.             break;
  5524.         case 'ppdefPlaceholders':
  5525.             L_ppdefPlaceholders_TEXT='(placeholders: Boxes with dotted or hatch-marked borders that are part of most slide layouts. These boxes hold title and body text or objects such as charts, tables, and pictures.)';
  5526.             sTemp=L_ppdefPlaceholders_TEXT;
  5527.             break;
  5528.         case 'ppdefRuler':
  5529.             L_ppdefRuler_TEXT='(ruler: Vertical and horizontal guides, marked in inches, that can be turned on or off. The origin (or zero marker) changes based on what is selected on the slide (text, text box, or shape).)';
  5530.             sTemp=L_ppdefRuler_TEXT;
  5531.             break;
  5532.         case 'ppdefSlideMaster':
  5533.             L_ppdefSlideMaster_TEXT='(slide master: The slide that stores information about the design template applied, including font styles, placeholder sizes and positions, background design, and color schemes.)';
  5534.             sTemp=L_ppdefSlideMaster_TEXT;
  5535.             break;
  5536.         case 'ppdefSlideTitleMasterPair':
  5537.             L_ppdefSlideTitleMasterPair_TEXT='(slide-master title pair: The slide master and title master for a given design template that you have applied to a presentation.)';
  5538.             sTemp=L_ppdefSlideTitleMasterPair_TEXT;
  5539.             break;
  5540.         case 'ppdefTemplate':
  5541.             L_ppdefTemplate_TEXT='(design template: A file that contains the styles in a presentation, including the type and size of bullets and fonts; placeholder sizes and positions; background design and fill color schemes; and a slide master and optional title master.)';
  5542.             sTemp=L_ppdefTemplate_TEXT;
  5543.             break;
  5544.         case 'ppdefTextAttributes':
  5545.             L_ppdefTextAttributes_TEXT='(text attributes: Any characteristic of text, such as font, size, style, color, or effect such as subscript or superscript.)';
  5546.             sTemp=L_ppdefTextAttributes_TEXT;
  5547.             break;
  5548.         case 'ppdefTitleMaster':
  5549.             L_ppdefTitleMaster_TEXT='(title master: The slide that stores information from the design template pertaining to styles on title slides, including placeholder sizes and positions, background design, and color schemes.)';
  5550.             sTemp=L_ppdefTitleMaster_TEXT;
  5551.             break;
  5552.         case 'ppdefView':
  5553.             L_ppdefView_TEXT='(view: A way of displaying the contents of a presentation and providing the user with the means to interact with it.)';
  5554.             sTemp=L_ppdefView_TEXT;
  5555.             break;
  5556.         case 'ppdefWebArchive':
  5557.             L_ppdefWebArchive_TEXT='(Web archive: A presentation saved in MHTML format that integrates all supporting information, including graphics and other files, into a single file.)';
  5558.             sTemp=L_ppdefWebArchive_TEXT;
  5559.             break;
  5560.         case 'ppdefWebPage':
  5561.             L_ppdefWebPage_TEXT='(Web page: A presentation saved in HTML format. Supporting graphics and other related files are stored in an associated folder when a presentation is saved as a Web page.)';
  5562.             sTemp=L_ppdefWebPage_TEXT;
  5563.             break;
  5564.         case 'ppdefWordart':
  5565.             L_ppdefWordart_TEXT='(WordArt: Text objects you create with ready-made effects to which you can apply additional formatting options.)';
  5566.             sTemp=L_ppdefWordart_TEXT;
  5567.             break;
  5568.         case 'ppdefXYZAxes':
  5569.             L_ppdefXYZAxes_TEXT='(x, y, and z axes: The three mutually perpendicular lines that are used to locate a point in a Cartesian coordinate system. In the Microsoft Office drawing layer, x is horizontal, y is vertical, and z is perpendicular to the document plane.)';
  5570.             sTemp=L_ppdefXYZAxes_TEXT;
  5571.             break;
  5572.         case 'PPDiagramEffectOptions':
  5573.             L_PPDiagramEffectOptions_TEXT='(diagram effect options: Animation enhancements that let you apply effects to a diagram piece by piece; for example, from top to bottom of a pyramid diagram.)';
  5574.             sTemp=L_PPDiagramEffectOptions_TEXT;
  5575.             break;
  5576.         case 'PPHandout':
  5577.             L_PPHandout_TEXT='(handout: A printed version of a presentation that can include multiple slides per page and space for audience notes.)';
  5578.             sTemp=L_PPHandout_TEXT;
  5579.             break;
  5580.         case 'PPJustify':
  5581.             L_PPJustify_TEXT='(justify: To adjust horizontal spacing so that text is aligned evenly along both the left and right margins. Justifying text creates a smooth edge on both sides.)';
  5582.             sTemp=L_PPJustify_TEXT;
  5583.             break;
  5584.         case 'PPMicrosoftDirect3d':
  5585.             L_PPMicrosoftDirect3d_TEXT='(Microsoft Direct 3D: A component of Microsoft DirectX, which is a set of advanced multimedia system services that are built into the Microsoft Windows operating system.)';
  5586.             sTemp=L_PPMicrosoftDirect3d_TEXT;
  5587.             break;
  5588.         case 'PPMotionPath':
  5589.             L_PPMotionPath_TEXT='(motion path: The path that a specified object or text will follow as part of an animation sequence for a slide.)';
  5590.             sTemp=L_PPMotionPath_TEXT;
  5591.             break;
  5592.         case 'PPMultipleMasters':
  5593.             L_PPMultipleMasters_TEXT='(multiple masters: When you apply more than one design template to your presentation, you will have multiple masters, one for each template that you are using.)';
  5594.             sTemp=L_PPMultipleMasters_TEXT;
  5595.             break;
  5596.         case 'PPWindowsMediaEncoder':
  5597.             L_PPWindowsMediaEncoder_TEXT='(Windows Media encoder: A Microsoft Windows Media technology that allows content developers to convert both live and prerecorded audio, video, and computer screen images to Windows Media Format for live and on-demand delivery.)';
  5598.             sTemp=L_PPWindowsMediaEncoder_TEXT;
  5599.             break;
  5600.         case 'PPWindowsMediaServices':
  5601.             L_PPWindowsMediaServices_TEXT='(Windows Media Services: A digital media platform that runs on a server, such as Windows 2000, to support streaming media, such as video and audio.)';
  5602.             sTemp=L_PPWindowsMediaServices_TEXT;
  5603.             break;
  5604.  
  5605.         // Word
  5606.  
  5607.         case 'IDH_htdefDecreaseFontSize':
  5608.             L_IDH_htdefDecreaseFontSize_TEXT='(Decrease Font Size: Reduces the font size of the selected text to the next smaller size available in Web page authoring.)';
  5609.             sTemp=L_IDH_htdefDecreaseFontSize_TEXT;
  5610.             break;
  5611.         case 'IDH_htdefExitViewSource':
  5612.             L_IDH_htdefExitViewSource_TEXT='(Exit HTML Source: Switches the view from the display of HTML source code to the display of Web page content.)';
  5613.             sTemp=L_IDH_htdefExitViewSource_TEXT;
  5614.             break;
  5615.         case 'IDH_htdefHorizontalLine':
  5616.             L_IDH_htdefHorizontalLine_TEXT='(horizontal line: Inserts a horizontal line onto a Web page. Microsoft Word inserts the same line style as the one you last inserted.)';
  5617.             sTemp=L_IDH_htdefHorizontalLine_TEXT;
  5618.             break;
  5619.         case 'IDH_htdefIncreaseFontSize':
  5620.             L_IDH_htdefIncreaseFontSize_TEXT='(Increase Font Size: Increases the font size of the selected text to the next larger size available in Web page authoring.)';
  5621.             sTemp=L_IDH_htdefIncreaseFontSize_TEXT;
  5622.             break;
  5623.         case 'IDH_htdefInlineVideo':
  5624.             L_IDH_htdefInlineVideo_TEXT='(inline movie: A movie clip that plays when the user opens a Web page, or when the pointer rests on a movie image, or in both instances, depending on the object\'s settings. Not all Web browsers support inline movies.)';
  5625.             sTemp=L_IDH_htdefInlineVideo_TEXT;
  5626.             break;
  5627.         case 'IDH_htdefWebPagePreview':
  5628.             L_IDH_htdefWebPagePreview_TEXT='(Web page preview: Displays the Web page in a Web browser.)';
  5629.             sTemp=L_IDH_htdefWebPagePreview_TEXT;
  5630.             break;
  5631.         case 'IDH_wddefChangedLines':
  5632.             L_IDH_wddefChangedLines_TEXT='(changed lines: Vertical lines appearing next to text that has been added, deleted, or changed by using tracked changes. You can specify that changed lines appear to the left or right of text. You can also hide changed lines.)';
  5633.             sTemp=L_IDH_wddefChangedLines_TEXT;
  5634.             break;
  5635.         case 'IDH_wddefClickNTypePointerShapes':
  5636.             L_IDH_wddefClickNTypePointerShapes_TEXT='(Click and Type pointer shapes: Indicate which formatting will be applied when you double-click: a left-aligned, centered, or right-aligned tab stop; a left indent; or left or right text wrapping.)';
  5637.             sTemp=L_IDH_wddefClickNTypePointerShapes_TEXT;
  5638.             break;
  5639.         case 'IDH_wddefFileProperty':
  5640.             L_IDH_wddefFileProperty_TEXT='(file property: A detail about a file that helps identify it, such as a descriptive title, the author name, the subject, or a keyword that identifies topics or other important information in the file.)';
  5641.             sTemp=L_IDH_wddefFileProperty_TEXT;
  5642.             break;
  5643.         case 'IDH_wddefFloatingObject':
  5644.             L_IDH_wddefFloatingObject_TEXT='(floating object: A graphic or other object that is inserted in the drawing layer so that you can position it precisely on the page or in front of or behind text or other objects.)';
  5645.             sTemp=L_IDH_wddefFloatingObject_TEXT;
  5646.             break;
  5647.         case 'IDH_wddefGutterMargin':
  5648.             L_IDH_wddefGutterMargin_TEXT='(gutter margin: A margin setting that adds extra space to the side or top margin of a document you plan to bind. A gutter margin ensures that text isn\'t obscured by the binding.)';
  5649.             sTemp=L_IDH_wddefGutterMargin_TEXT;
  5650.             break;
  5651.         case 'IDH_wddefInline':
  5652.             L_IDH_wddefInline_TEXT='(Inline: A type of cascading style sheet, which defines the styles that control the way a Web page or part of a Web page appears in a Web browser. The inline styles exist within a Web page on the same line as the text the style is applied to.)';
  5653.             sTemp=L_IDH_wddefInline_TEXT;
  5654.             break;
  5655.         case 'IDH_wddefInlineObject':
  5656.             L_IDH_wddefInlineObject_TEXT='(inline object: A graphic or other object that is positioned directly in the text of a Microsoft Word document at the insertion point.)';
  5657.             sTemp=L_IDH_wddefInlineObject_TEXT;
  5658.             break;
  5659.         case 'IDH_wddefJustify':
  5660.             L_IDH_wddefJustify_TEXT='(justify: To adjust horizontal spacing so that text is aligned evenly along both the left and right margins. Justifying text creates a smooth edge on both sides.)';
  5661.             sTemp=L_IDH_wddefJustify_TEXT;
  5662.             break;
  5663.         case 'IDH_wddefLinked':
  5664.             L_IDH_wddefLinked_TEXT='(Linked: A type of cascading style sheet, which defines the styles that control the way a Web page or part of a Web page appears in a Web browser. The linked style sheet exists in a separate file and is referenced throughout one or more Web pages.)';
  5665.             sTemp=L_IDH_wddefLinked_TEXT;
  5666.             break;
  5667.         case 'IDH_wddefMirrorMargins':
  5668.             L_IDH_wddefMirrorMargins_TEXT='(mirror margins: Margins of the left page are a mirror image of those of the right page. That is, the inside margins are the same width, and the outside margins are the same width.)';
  5669.             sTemp=L_IDH_wddefMirrorMargins_TEXT;
  5670.             break;
  5671.         case 'IDH_wddefNormalTemplate':
  5672.             L_IDH_wddefNormalTemplate_TEXT='(Normal template: A global template that you can use for any type of document. You can modify this template to change the default document formatting or content.)';
  5673.             sTemp=L_IDH_wddefNormalTemplate_TEXT;
  5674.             break;
  5675.         case 'IDH_wddefOutlineNumberedList':
  5676.             L_IDH_wddefOutlineNumberedList_TEXT='(outline numbered list: A list created to apply a hierarchical structure to any list or document. A document can have up to nine levels, and Microsoft Word does not apply built-in heading styles to the items in the list.)';
  5677.             sTemp=L_IDH_wddefOutlineNumberedList_TEXT;
  5678.             break;
  5679.         case 'IDH_wddefRelativePath':
  5680.             L_IDH_wddefRelativePath_TEXT='(relative path: Includes only that portion of the path that is different from the path of the source object. For example, the relative path from c:\\animal\\mammal\\canine\\fido to c:\\animal\\mammal\\feline\\fluffy is ..\\ ..\\feline\\fluffy.)';
  5681.             sTemp=L_IDH_wddefRelativePath_TEXT;
  5682.             break;
  5683.         case 'IDH_wddefSeparatorCharacters':
  5684.             L_IDH_wddefSeparatorCharacters_TEXT='(separator characters: Characters you choose to indicate where you want text to separate when you convert a table to text, or where you want new rows or columns to begin when you convert text to a table.)';
  5685.             sTemp=L_IDH_wddefSeparatorCharacters_TEXT;
  5686.             break;
  5687.         case 'IDH_wddefShortMenu':
  5688.             L_IDH_wddefShortMenu_TEXT='(personalized menu: A menu that shows only basic commands and commands that you use often.)';
  5689.             sTemp=L_IDH_wddefShortMenu_TEXT;
  5690.             break;
  5691.         case 'IDH_wddefUsesForTextFrames':
  5692.             L_IDH_wddefUsesForTextFrames_TEXT='(uses for text frames: To position a graphic or text that contains comments, footnotes, endnotes, or certain fields, use a frame. For other types of text, use a text box.)';
  5693.             sTemp=L_IDH_wddefUsesForTextFrames_TEXT;
  5694.             break;
  5695.         case 'IDH_wodefCollapseMasterDocument':
  5696.             L_IDH_wodefCollapseMasterDocument_TEXT='(collapse a master document: Collapse a master document in outline view to hide the contents of subdocuments and display them as hyperlinks.)';
  5697.             sTemp=L_IDH_wodefCollapseMasterDocument_TEXT;
  5698.             break;
  5699.         case 'IDH_wodefCommentMark':
  5700.             L_IDH_wodefCommentMark_TEXT='(comment mark: Each time you add a comment to a document, Microsoft Word inserts a comment mark in the document. Comment marks appear when you click Markup on the View menu.)';
  5701.             sTemp=L_IDH_wodefCommentMark_TEXT;
  5702.             break;
  5703.         case 'IDH_wodefDocumentMap':
  5704.             L_IDH_wodefDocumentMap_TEXT='(Document Map: A vertical pane along the left edge of the document window that displays an outline of the document\'s headings. You can use the Document Map to quickly move through a document and to keep track of your location in it.)';
  5705.             sTemp=L_IDH_wodefDocumentMap_TEXT;
  5706.             break;
  5707.         case 'IDH_wodefExpandMasterDocument':
  5708.             L_IDH_wodefExpandMasterDocument_TEXT='(expand a master document: Display the contents of all subdocuments in outline view. Expanding a master document makes it easier to work on the master document as a whole: for example, in order to check spelling or create an index.)';
  5709.             sTemp=L_IDH_wodefExpandMasterDocument_TEXT;
  5710.             break;
  5711.         case 'IDH_wodefExternalDataSource':
  5712.             L_IDH_wodefExternalDataSource_TEXT='(external data source: A data source that contains the data a user wants to gain access to: for example, a Microsoft Excel list or a Microsoft Access database.)';
  5713.             sTemp=L_IDH_wodefExternalDataSource_TEXT;
  5714.             break;
  5715.         case 'IDH_wodefIndex':
  5716.             L_IDH_wodefIndex_TEXT='(index: A list of the words and phrases that are discussed in a printed document, along with the page numbers they appear on.)';
  5717.             sTemp=L_IDH_wodefIndex_TEXT;
  5718.             break;
  5719.         case 'IDH_wodefLeader':
  5720.             L_IDH_wodefLeader_TEXT='(leader: A line that draws the reader\'s eye from a callout to the appropriate part of the illustration.)';
  5721.             sTemp=L_IDH_wodefLeader_TEXT;
  5722.             break;
  5723.         case 'IDH_wodefOnlineLayoutView':
  5724.             L_IDH_wodefOnlineLayoutView_TEXT='(Web layout view: A view of a document as it will appear in a Web browser. For example, the document appears as one long page (without page breaks) and text and tables wrap to fit in the window.)';
  5725.             sTemp=L_IDH_wodefOnlineLayoutView_TEXT;
  5726.             break;
  5727.         case 'IDH_wodefOutlineLevel':
  5728.             L_IDH_wodefOutlineLevel_TEXT='(outline level: Paragraph formatting you can use to assign a hierarchical level (Level 1 through Level 9) to paragraphs in your document. For example, after you assign outline levels, you can work with the document in outline view or in the Document Map.)';
  5729.             sTemp=L_IDH_wodefOutlineLevel_TEXT;
  5730.             break;
  5731.         case 'IDH_wodefPan':
  5732.             L_IDH_wodefPan_TEXT='(pan: To scroll continuously through a document by using the Microsoft IntelliMouse pointing device or Microsoft IntelliMouse trackball.)';
  5733.             sTemp=L_IDH_wodefPan_TEXT;
  5734.             break;
  5735.         case 'IDH_wodefQuery':
  5736.             L_IDH_wodefQuery_TEXT='(query: A means of finding all the records stored in a data source that fit a set of criteria you name. Queries can contain operators, quotation marks, wildcard characters, and parentheses to help focus your search.)';
  5737.             sTemp=L_IDH_wodefQuery_TEXT;
  5738.             break;
  5739.         case 'IDH_wodefTableOfAuthorities':
  5740.             L_IDH_wodefTableOfAuthorities_TEXT='(table of authorities: A list of the references in a legal document, such as references to cases, statutes, and rules, along with the numbers of the pages the references appear on.)';
  5741.             sTemp=L_IDH_wodefTableOfAuthorities_TEXT;
  5742.             break;
  5743.         case 'IDH_wodefTableOfFigures':
  5744.             L_IDH_wodefTableOfFigures_TEXT='(table of figures: A list of the captions for pictures, charts, graphs, slides, or other illustrations in a document, along with the numbers of the pages the captions appear on.)';
  5745.             sTemp=L_IDH_wodefTableOfFigures_TEXT;
  5746.             break;
  5747.         case 'IDH_wodefWatermark':
  5748.             L_IDH_wodefWatermark_TEXT='(watermark: Any graphic or text, such as \"Confidential,\" that when printed appears either on top of or behind existing document text.)';
  5749.             sTemp=L_IDH_wodefWatermark_TEXT;
  5750.             break;
  5751.         case 'WdBalloonsformarkup':
  5752.             L_WdBalloonsformarkup_TEXT='(balloons: In print layout view or Web layout view, markup balloons show markup elements, such as comments and tracked changes, in the margins of your document. Use these balloons to easily see and respond to reviewers\' changes and comments.)';
  5753.             sTemp=L_WdBalloonsformarkup_TEXT;
  5754.             break;
  5755.         case 'WdBookfold':
  5756.             L_WdBookfold_TEXT='(book fold printing: Printing a document in one or more booklets so the printed pages can be folded and read as a book.)';
  5757.             sTemp=L_WdBookfold_TEXT;
  5758.             break;
  5759.         case 'WdConcordance':
  5760.             L_WdConcordance_TEXT='(concordance file: A list of words to include in an index. Use a concordance file in Microsoft Word to quickly mark index entries.)';
  5761.             sTemp=L_WdConcordance_TEXT;
  5762.             break;
  5763.         case 'wdconFrames':
  5764.             L_wdconFrames_TEXT='(frames: The named subwindow of a frames page. The frame appears in a Web browser as one of a number of window regions in which pages can be displayed. The frame can be scrollable and resizable, and it can have a border.)';
  5765.             sTemp=L_wdconFrames_TEXT;
  5766.             break;
  5767.         case 'WdFilteredhtml':
  5768.             L_WdFilteredhtml_TEXT='(filtered HTML: Saving in the Web Page, Filtered format removes Microsoft Office-specific tags. If you save in filtered HTML and then reopen the file in Office programs, text and general appearance will be preserved, but some features may work differently.)';
  5769.             sTemp=L_WdFilteredhtml_TEXT;
  5770.             break;
  5771.         case 'WdLinkbar':
  5772.             L_WdLinkbar_TEXT='(link bars: A collection of graphic or text buttons representing hyperlinks to pages within your Web site and to external sites.)';
  5773.             sTemp=L_WdLinkbar_TEXT;
  5774.             break;
  5775.         case 'WdMappeddatafield':
  5776.             L_WdMappeddatafield_TEXT='(mapped data field: A field that represents commonly used information, such as \"First Name.\" If a data source contains a \"First Name\" field or variation, such as \"FName,\" the data source field automatically maps to the corresponding mapped data field.)';
  5777.             sTemp=L_WdMappeddatafield_TEXT;
  5778.             break;
  5779.         case 'WdMarkup':
  5780.             L_WdMarkup_TEXT='(markup: Comments and tracked changes such as insertions, deletions, and formatting changes. View markup when you want to process tracked changes and comments. Print a document with markup to keep a record of changes made to a document.)';
  5781.             sTemp=L_WdMarkup_TEXT;
  5782.             break;
  5783.         case 'WdNestedTable':
  5784.             L_WdNestedTable_TEXT='(nested table: A table inserted within a table cell. If you use a table to lay out a page, and you want to use another table to arrange the information, you can insert a nested table.)';
  5785.             sTemp=L_WdNestedTable_TEXT;
  5786.             break;
  5787.         case 'WdOledb':
  5788.             L_WdOledb_TEXT='(OLE DB: A component database architecture that provides efficient network and Internet access to many types of data sources, including relational data, mail files, flat files, and spreadsheets.)';
  5789.             sTemp=L_WdOledb_TEXT;
  5790.             break;
  5791.         case 'wdreadinglayoutview':
  5792.             L_wdreadinglayoutview_TEXT='(reading layout view: A view that is designed for reading documents on a computer screen. The document is resized to fit the screen and most toolbars are removed, but commands are available for navigating, commenting, and looking up words.)';
  5793.             sTemp=L_wdreadinglayoutview_TEXT;
  5794.             break;
  5795.         case 'WdSmallCaps':
  5796.             L_WdSmallCaps_TEXT='(small caps: A format that makes lowercase text appear as capital letters in a reduced font size. Small caps formatting does not affect numbers, punctuation, nonalphabetic characters, or uppercase letters.)';
  5797.             sTemp=L_WdSmallCaps_TEXT;
  5798.             break;
  5799.         case 'WdTrackedchanges':
  5800.             L_WdTrackedchanges_TEXT='(tracked change: A mark that shows where a deletion, insertion, or other editing change has been made in a document.)';
  5801.             sTemp=L_WdTrackedchanges_TEXT;
  5802.             break;
  5803.         case 'wdxmlexpansionpack':
  5804.             L_wdxmlexpansionpack_TEXT='(XML expansion pack: A collection of files, managed by a manifest.xml file, that add functionality to a Microsoft Word or Microsoft Excel document by specifying custom display or actions.)';
  5805.             sTemp=L_wdxmlexpansionpack_TEXT;
  5806.             break;
  5807.         case 'wodefActiveDocument':
  5808.             L_wodefActiveDocument_TEXT='(active document: The document in which you\'re working. Text you type or graphics you insert in Microsoft Word appear in the active document. The title bar of the active document is highlighted.)';
  5809.             sTemp=L_wodefActiveDocument_TEXT;
  5810.             break;
  5811.         case 'wodefAnnotation':
  5812.             L_wodefAnnotation_TEXT='(comment: A note or annotation that an author or reviewer adds to a document. Microsoft Word displays the comment in a balloon in the margin of the document or in the Reviewing Pane.)';
  5813.             sTemp=L_wodefAnnotation_TEXT;
  5814.             break;
  5815.         case 'wodefAutoText':
  5816.             L_wodefAutoText_TEXT='(AutoText: A storage location for text or graphics you want to use again, such as a standard contract clause or a long distribution list. Each selection of text or graphics is recorded as an AutoText entry and is assigned a unique name.)';
  5817.             sTemp=L_wodefAutoText_TEXT;
  5818.             break;
  5819.         case 'wodefbaseStyle':
  5820.             L_wodefbaseStyle_TEXT='(base style: The underlying or original style on which other styles in a document are dependent. When you change a formatting element of the base style in a document, all other styles that originate from the base style will also reflect the change.)';
  5821.             sTemp=L_wodefbaseStyle_TEXT;
  5822.             break;
  5823.         case 'wodefBodyText':
  5824.             L_wodefBodyText_TEXT='(body text: Text that is not formatted with a built-in heading style (Heading 1 through Heading 9) or an outline-level paragraph format (Level 1 through Level 9). In outline view, Microsoft Word displays a symbol to the left of body text.)';
  5825.             sTemp=L_wodefBodyText_TEXT;
  5826.             break;
  5827.         case 'wodefcharacterStyle':
  5828.             L_wodefcharacterStyle_TEXT='(character style: A combination of any of the character formatting options identified by a style name.)';
  5829.             sTemp=L_wodefcharacterStyle_TEXT;
  5830.             break;
  5831.         case 'wodefCollapse':
  5832.             L_wodefCollapse_TEXT='(collapse an outline: Collapse an outline in outline view to hide body text and subheadings under headings. Collapsing a heading is the opposite of expanding. When you collapse body text and subheadings, you can focus on fewer details.)';
  5833.             sTemp=L_wodefCollapse_TEXT;
  5834.             break;
  5835.         case 'wodefdatafield':
  5836.             L_wodefdatafield_TEXT='(data field: A category of information that corresponds to one column of information in a data source. The name of each data field is listed in the first row (header row) of the data source. \"PostalCode\" and \"LastName\" are examples of data field names.)';
  5837.             sTemp=L_wodefdatafield_TEXT;
  5838.             break;
  5839.         case 'wodefdatarecord':
  5840.             L_wodefdatarecord_TEXT='(data record: A complete set of related information that corresponds to one row of information in the data source. All information about one client in a client mailing list is an example of a data record.)';
  5841.             sTemp=L_wodefdatarecord_TEXT;
  5842.             break;
  5843.         case 'wodefDemote':
  5844.             L_wodefDemote_TEXT='(demote: In an outline, to change a heading to body text or to a lower heading level: for example, to change from Heading 5 to Heading 6.)';
  5845.             sTemp=L_wodefDemote_TEXT;
  5846.             break;
  5847.         case 'wodefEmbed':
  5848.             L_wodefEmbed_TEXT='(embed: To insert information created in one program, such as a chart or an equation, into another program. After the object is embedded, the information becomes part of the document. Any changes you make to the object are reflected in the document.)';
  5849.             sTemp=L_wodefEmbed_TEXT;
  5850.             break;
  5851.         case 'wodefExcludeDictionary':
  5852.             L_wodefExcludeDictionary_TEXT='(exclude dictionary: A dictionary with words that the main dictionary recognizes as being spelled correctly, but that you want to verify during a spelling check. For example, if you prefer \"theatre\" to \"theater,\" add \"theater\" to the exclude dictionary.)';
  5853.             sTemp=L_wodefExcludeDictionary_TEXT;
  5854.             break;
  5855.         case 'wodefField':
  5856.             L_wodefField_TEXT='(field: A set of codes that instructs Microsoft Word to insert text, graphics, page numbers, and other material into a document automatically. For example, the DATE field inserts the current date.)';
  5857.             sTemp=L_wodefField_TEXT;
  5858.             break;
  5859.         case 'wodefFieldName':
  5860.             L_wodefFieldName_TEXT='(field name: The name of a category of information in a mail-merge data source. For example, \"City,\" \"State,\" and \"PostalCode\" are commonly used field names in an address list.)';
  5861.             sTemp=L_wodefFieldName_TEXT;
  5862.             break;
  5863.         case 'wodefFieldResult':
  5864.             L_wodefFieldResult_TEXT='(field results: Text or graphics inserted in a document when Microsoft Word carries out a field\'s instructions. When you print the document or hide field codes, the field results replace the field codes.)';
  5865.             sTemp=L_wodefFieldResult_TEXT;
  5866.             break;
  5867.         case 'wodefFieldType':
  5868.             L_wodefFieldType_TEXT='(field type: The name that identifies the action or effect the field has in the document. Examples of field types are AUTHOR, COMMENTS, and DATE.)';
  5869.             sTemp=L_wodefFieldType_TEXT;
  5870.             break;
  5871.         case 'wodefForm':
  5872.             L_wodefForm_TEXT='(form: A document that contains fill-in blanks, or form fields, in which you enter information. For example, you can create an online registration form in Microsoft Word that uses drop-down lists from which users can select entries.)';
  5873.             sTemp=L_wodefForm_TEXT;
  5874.             break;
  5875.         case 'wodefFormatSwitch':
  5876.             L_wodefFormatSwitch_TEXT='(format switch (\\*): A switch or instruction that specifies the capitalization, numeral style, and character formatting that Microsoft Word uses in a field result.)';
  5877.             sTemp=L_wodefFormatSwitch_TEXT;
  5878.             break;
  5879.         case 'wodefFormField':
  5880.             L_wodefFormField_TEXT='(form field: In a form, a location where a particular type of data, such as a name or address, is stored.)';
  5881.             sTemp=L_wodefFormField_TEXT;
  5882.             break;
  5883.         case 'wodefFrame':
  5884.             L_wodefFrame_TEXT='(frame: A container that you can resize and position anywhere on the page. To position text or graphics that contain comments, footnotes, endnotes, or certain fields, you must use a frame instead of a text box.)';
  5885.             sTemp=L_wodefFrame_TEXT;
  5886.             break;
  5887.         case 'wodefglobalTemplate':
  5888.             L_wodefglobalTemplate_TEXT='(global template: Stores macros, AutoText entries, and custom toolbar, menu, and shortcut key settings that you can use while you work with documents based on any template. By default, the Normal template is a global template.)';
  5889.             sTemp=L_wodefglobalTemplate_TEXT;
  5890.             break;
  5891.         case 'wodefGridlines':
  5892.             L_wodefGridlines_TEXT='(gridlines: Thin lines that indicate the cell boundaries in a table. Gridlines do not print when you print a document.)';
  5893.             sTemp=L_wodefGridlines_TEXT;
  5894.             break;
  5895.         case 'wodefHeaderRow':
  5896.             L_wodefHeaderRow_TEXT='(header row: The first row (or record) in a mail-merge data source. The header row contains the field names for the categories of information in the data source, for example, \"Name\" and \"City.\")';
  5897.             sTemp=L_wodefHeaderRow_TEXT;
  5898.             break;
  5899.         case 'wodefHeaderSource':
  5900.             L_wodefHeaderSource_TEXT='(header source: A document that contains the header row (or header record) to be used with the data source specified for a mail-merge main document.)';
  5901.             sTemp=L_wodefHeaderSource_TEXT;
  5902.             break;
  5903.         case 'wodefHeadingStyle':
  5904.             L_wodefHeadingStyle_TEXT='(heading style: Formatting applied to a heading. Microsoft Word has nine different built-in styles: Heading 1 through Heading 9.)';
  5905.             sTemp=L_wodefHeadingStyle_TEXT;
  5906.             break;
  5907.         case 'wodefHiddenText':
  5908.             L_wodefHiddenText_TEXT='(hidden text: Character formatting that allows you to show or hide specified text. Microsoft Word indicates hidden text by underlining it with a dotted line.)';
  5909.             sTemp=L_wodefHiddenText_TEXT;
  5910.             break;
  5911.         case 'wodefHorizontalRuler':
  5912.             L_wodefHorizontalRuler_TEXT='(horizontal ruler: A bar marked off in units of measure (such as inches) that is displayed across the top of the document window.)';
  5913.             sTemp=L_wodefHorizontalRuler_TEXT;
  5914.             break;
  5915.         case 'wodefHyperlinkDisplayText':
  5916.             L_wodefHyperlinkDisplayText_TEXT='(hyperlink display text: The part of a hyperlink in a document or Web page that appears as text on the screen.)';
  5917.             sTemp=L_wodefHyperlinkDisplayText_TEXT;
  5918.             break;
  5919.         case 'wodefIndexEntry':
  5920.             L_wodefIndexEntry_TEXT='(index entry: A field code that marks specific text for inclusion in an index. When you mark text as an index entry, Microsoft Word inserts an XE (Index Entry) field formatted as hidden text.)';
  5921.             sTemp=L_wodefIndexEntry_TEXT;
  5922.             break;
  5923.         case 'wodefLeaderCharacter':
  5924.             L_wodefLeaderCharacter_TEXT='(leader character: A solid, dotted, or dashed line that is used in a table of contents and that fills the space used by a tab character.)';
  5925.             sTemp=L_wodefLeaderCharacter_TEXT;
  5926.             break;
  5927.         case 'wodefLineSpacing':
  5928.             L_wodefLineSpacing_TEXT='(line spacing: The amount of space from the bottom of one line of text to the bottom of the next line. Microsoft Word adjusts the line spacing to accommodate the largest font or the tallest graphic in that line.)';
  5929.             sTemp=L_wodefLineSpacing_TEXT;
  5930.             break;
  5931.         case 'wodefLink':
  5932.             L_wodefLink_TEXT='(link: Used to insert a copy of information created in one program into a Microsoft Word document while maintaining a connection between the two files. When the information changes in the source file, the changes are reflected in the destination document.)';
  5933.             sTemp=L_wodefLink_TEXT;
  5934.             break;
  5935.         case 'wodefMasterDocument':
  5936.             L_wodefMasterDocument_TEXT='(master document: A \"container\" for a set of separate files (or subdocuments). You can use a master document to set up and manage a multipart document, such as a book with several chapters.)';
  5937.             sTemp=L_wodefMasterDocument_TEXT;
  5938.             break;
  5939.         case 'wodefNonbreakingHyphen':
  5940.             L_wodefNonbreakingHyphen_TEXT='(nonbreaking hyphen: A hyphen that\'s used to prevent a hyphenated word, number, or phrase from breaking if it falls at the end of a line. For example, you can prevent 555-0123 from breaking; instead, the entire item moves to the beginning of the next line.)';
  5941.             sTemp=L_wodefNonbreakingHyphen_TEXT;
  5942.             break;
  5943.         case 'wodefnormalStyle':
  5944.             L_wodefnormalStyle_TEXT='(Normal style: The default paragraph style used in documents based on the Normal template (Normal.dot).)';
  5945.             sTemp=L_wodefnormalStyle_TEXT;
  5946.             break;
  5947.         case 'wodefNormalView':
  5948.             L_wodefNormalView_TEXT='(normal view: A view that shows text formatting and a simplified page layout. Normal view is convenient for most editing and formatting tasks.)';
  5949.             sTemp=L_wodefNormalView_TEXT;
  5950.             break;
  5951.         case 'wodefNoteReferenceMark':
  5952.             L_wodefNoteReferenceMark_TEXT='(note reference mark: A number, character, or combination of characters that indicates that additional information is contained in a footnote or endnote.)';
  5953.             sTemp=L_wodefNoteReferenceMark_TEXT;
  5954.             break;
  5955.         case 'wodefNumericPictureSwitch':
  5956.             L_wodefNumericPictureSwitch_TEXT='(numeric picture switch (\\#): Specifies how Microsoft Word will display the numeric result of a field. This switch is called a \"picture switch\" because you use symbols to show how you want the field result to look.)';
  5957.             sTemp=L_wodefNumericPictureSwitch_TEXT;
  5958.             break;
  5959.         case 'wodefOptionalHyphen':
  5960.             L_wodefOptionalHyphen_TEXT='(optional hyphen: A hyphen that\'s used to control where a word or phrase breaks if it falls at the end of a line. For example, you can specify that the word \"nonprinting\" breaks as \"non-printing\" rather than \"nonprint-ing.\")';
  5961.             sTemp=L_wodefOptionalHyphen_TEXT;
  5962.             break;
  5963.         case 'wodefOutlineSymbols':
  5964.             L_wodefOutlineSymbols_TEXT='(outline symbols: Symbols that are displayed beside paragraphs in outline view. You can use the symbols to display or hide subordinate levels of text and to reorganize text quickly.)';
  5965.             sTemp=L_wodefOutlineSymbols_TEXT;
  5966.             break;
  5967.         case 'wodefOutlineView':
  5968.             L_wodefOutlineView_TEXT='(outline view: A view that shows the headings of a document indented to represent their level in the document\'s structure. You can also use outline view to work with master documents.)';
  5969.             sTemp=L_wodefOutlineView_TEXT;
  5970.             break;
  5971.         case 'wodefOvertype':
  5972.             L_wodefOvertype_TEXT='(overtype: The replacement of existing characters with newly typed characters. When overtype mode is turned on, OVR appears in the status bar.)';
  5973.             sTemp=L_wodefOvertype_TEXT;
  5974.             break;
  5975.         case 'wodefPageBreak':
  5976.             L_wodefPageBreak_TEXT='(page break: The point at which one page ends and another begins. Microsoft Word inserts an \"automatic\" (or soft) page break for you, or you can force a page break at a specific location by inserting a \"manual\" (or hard) page break.)';
  5977.             sTemp=L_wodefPageBreak_TEXT;
  5978.             break;
  5979.         case 'wodefParagraphFormatting':
  5980.             L_wodefParagraphFormatting_TEXT='(paragraph formatting: Formatting that controls the appearance of a paragraph. Examples include indentation, alignment, line spacing, and pagination.)';
  5981.             sTemp=L_wodefParagraphFormatting_TEXT;
  5982.             break;
  5983.         case 'wodefparagraphMark':
  5984.             L_wodefparagraphMark_TEXT='(paragraph mark: The nonprinting symbol that Microsoft Word inserts when you press ENTER to end a paragraph. The paragraph mark stores the formatting you apply to the paragraph.)';
  5985.             sTemp=L_wodefparagraphMark_TEXT;
  5986.             break;
  5987.         case 'wodefPenAnnotations':
  5988.             L_wodefPenAnnotations_TEXT='(pen comments: Comments created by using a stylus. Microsoft Word treats pen comments like any other drawing object. Pen comments don\'t appear in the Reviewing Pane, and Word doesn\'t insert comment marks in the document window.)';
  5989.             sTemp=L_wodefPenAnnotations_TEXT;
  5990.             break;
  5991.         case 'wodefPicturePlaceholder':
  5992.             L_wodefPicturePlaceholder_TEXT='(picture placeholder: A rectangle that represents an imported graphic in your document. You can increase scrolling speed by temporarily replacing graphics with picture placeholders.)';
  5993.             sTemp=L_wodefPicturePlaceholder_TEXT;
  5994.             break;
  5995.         case 'wodefPredefinedBookmark':
  5996.             L_wodefPredefinedBookmark_TEXT='(predefined bookmark: Bookmarks that Microsoft Word automatically sets in each document. For example, the \"\\Sel\" predefined bookmark refers to the current selection or the insertion point.)';
  5997.             sTemp=L_wodefPredefinedBookmark_TEXT;
  5998.             break;
  5999.         case 'wodefPromote':
  6000.             L_wodefPromote_TEXT='(promote: In an outline, to change body text to a heading, or to change a heading to a higher level heading: for example, from Heading 6 to Heading 5.)';
  6001.             sTemp=L_wodefPromote_TEXT;
  6002.             break;
  6003.         case 'wodefRevisionMark':
  6004.             L_wodefRevisionMark_TEXT='(revision mark: A mark that shows where a deletion, insertion, or other editing change has been made in a document.)';
  6005.             sTemp=L_wodefRevisionMark_TEXT;
  6006.             break;
  6007.         case 'wodefSection':
  6008.             L_wodefSection_TEXT='(section: A portion of a document in which you set certain page formatting options. You create a new section when you want to change such properties as line numbering, number of columns, or headers and footers.)';
  6009.             sTemp=L_wodefSection_TEXT;
  6010.             break;
  6011.         case 'wodefSectionBreak':
  6012.             L_wodefSectionBreak_TEXT='(section break: A mark you insert to show the end of a section. A section break stores the section formatting elements, such as the margins, page orientation, headers and footers, and sequence of page numbers.)';
  6013.             sTemp=L_wodefSectionBreak_TEXT;
  6014.             break;
  6015.         case 'wodefSpecialCharacter':
  6016.             L_wodefSpecialCharacter_TEXT='(special character: A character or symbol that doesn\'t appear on the keyboard but can be displayed on the screen and printed: for example, the copyright symbol.)';
  6017.             sTemp=L_wodefSpecialCharacter_TEXT;
  6018.             break;
  6019.         case 'wodefSpike':
  6020.             L_wodefSpike_TEXT='(Spike: A special AutoText entry that stores multiple deletions. Microsoft Word appends one item to another until you paste the contents as a group in a new location in your document. You can also use the Microsoft Office Clipboard to get the same result.)';
  6021.             sTemp=L_wodefSpike_TEXT;
  6022.             break;
  6023.         case 'wodefStory':
  6024.             L_wodefStory_TEXT='(story: A document area that contains a range of text distinct from other areas of text in a document. For example, if a document includes body text, footnotes, and headers, it contains a main text story, footnotes story, and headers story.)';
  6025.             sTemp=L_wodefStory_TEXT;
  6026.             break;
  6027.         case 'wodefStyleArea':
  6028.             L_wodefStyleArea_TEXT='(style area: A vertical area along the left edge of the document window that displays the name of the paragraph style that is applied to each paragraph.)';
  6029.             sTemp=L_wodefStyleArea_TEXT;
  6030.             break;
  6031.         case 'wodefSubentry':
  6032.             L_wodefSubentry_TEXT='(subentry: An index entry that falls under a more general heading. For example, the index entry \"planets\" could have the subentries \"Mars\" and \"Venus.\")';
  6033.             sTemp=L_wodefSubentry_TEXT;
  6034.             break;
  6035.         case 'wodefSwitch':
  6036.             L_wodefSwitch_TEXT='(switch: When working with fields, a special instruction that causes a specific action to occur. Generally, a switch is added to a field to modify a result.)';
  6037.             sTemp=L_wodefSwitch_TEXT;
  6038.             break;
  6039.         case 'wodefTable':
  6040.             L_wodefTable_TEXT='(table: One or more rows of cells commonly used to display numbers and other items for quick reference and analysis. Items in a table are organized into rows and columns.)';
  6041.             sTemp=L_wodefTable_TEXT;
  6042.             break;
  6043.         case 'wodeftextframe':
  6044.             L_wodeftextframe_TEXT='(text frame: The area within a shape that can contain text.)';
  6045.             sTemp=L_wodeftextframe_TEXT;
  6046.             break;
  6047.         case 'wodefVerticalRuler':
  6048.             L_wodefVerticalRuler_TEXT='(vertical ruler: A bar displayed along the left side of the document window. You can use the vertical ruler to adjust the top and bottom page margins and the row height in tables.)';
  6049.             sTemp=L_wodefVerticalRuler_TEXT;
  6050.             break;
  6051.         case 'wodefVoiceAnnotations':
  6052.             L_wodefVoiceAnnotations_TEXT='(voice comments: Recordings that are attached to your document.)';
  6053.             sTemp=L_wodefVoiceAnnotations_TEXT;
  6054.             break;
  6055.         case 'wodefWidowAndOrphan':
  6056.             L_wodefWidowAndOrphan_TEXT='(widow and orphan: A widow is the last line of a paragraph printed by itself at the top of a page. An orphan is the first line of a paragraph printed by itself at the bottom of a page.)';
  6057.             sTemp=L_wodefWidowAndOrphan_TEXT;
  6058.             break;
  6059.         case 'wodefWLL':
  6060.             L_wodefWLL_TEXT='(Word Add-in Library (WLL): A stand-alone, dynamic-link library that, when loaded, can add custom commands that extend the functionality of Microsoft Word. Commands and functions in a loaded WLL are also available to Microsoft Visual Basic projects.)';
  6061.             sTemp=L_wodefWLL_TEXT;
  6062.             break;
  6063.         case 'wodefWordPublication':
  6064.             L_wodefWordPublication_TEXT='(Word publication: A Microsoft Word document that contains hyperlinks to another location. You can use hyperlinks to go to another location in the same document or to another file on your hard disk, your network, an intranet, or the Internet.)';
  6065.             sTemp=L_wodefWordPublication_TEXT;
  6066.             break;
  6067.  
  6068.         // FrontPage
  6069.  
  6070.         case 'FpAccessControlList':
  6071.             L_FpAccessControlList_TEXT='(ACL: access control list. A list that indicates which users or groups have permission to access or modify a particular file on a Windows NT-based server.)';
  6072.             sTemp=L_FpAccessControlList_TEXT;
  6073.             break;
  6074.         case 'FpActiveServerPages':
  6075.             L_FpActiveServerPages_TEXT='(ASP: Active Server Pages. A server-side scripting technology that is used to create dynamic interactive Web applications. An ASP file is an HTML page containing scripts that are processed by a Web server before being sent to a browser.)';
  6076.             sTemp=L_FpActiveServerPages_TEXT;
  6077.             break;
  6078.         case 'FpAdministratorRole':
  6079.             L_FpAdministratorRole_TEXT='(Administrator role: A collection of rights that allows a user to modify all Web site content and manage site settings and accounts.)';
  6080.             sTemp=L_FpAdministratorRole_TEXT;
  6081.             break;
  6082.         case 'FpAdvanceAuthorRole':
  6083.             L_FpAdvanceAuthorRole_TEXT='(Advanced Author role: A collection of rights that allows the user to view, add, and change pages, documents in libraries, discussion boards, themes, and borders, as well as manage tasks and recalculate links. A default role.)';
  6084.             sTemp=L_FpAdvanceAuthorRole_TEXT;
  6085.             break;
  6086.         case 'fpanchor':
  6087.             L_fpanchor_TEXT='(anchor (also bookmark): A named location on a Web page that can be the target of a hyperlink. A bookmark can be applied to a string of characters, or it can exist on a page separately from any text. In a URL, a bookmark is preceded by the number sign (#).)';
  6088.             sTemp=L_fpanchor_TEXT;
  6089.             break;
  6090.         case 'fpAnonymousFTP':
  6091.             L_fpAnonymousFTP_TEXT='(anonymous FTP: The ability to access a remote computer system on which one does not have an account, via the Internet\'s File Transfer Protocol (FTP). Users have restricted access rights with anonymous FTP.)';
  6092.             sTemp=L_fpAnonymousFTP_TEXT;
  6093.             break;
  6094.         case 'FpAnonymousUserAccess':
  6095.             L_FpAnonymousUserAccess_TEXT='(anonymous user access: The ability to access a Web server on which one does not have an account. Usually, anonymous users have more restricted access rights than users with accounts.)';
  6096.             sTemp=L_FpAnonymousUserAccess_TEXT;
  6097.             break;
  6098.         case 'fpArticle':
  6099.             L_fpArticle_TEXT='(article: A message or posting in a discussion group or an Internet newsgroup. An article can be a response to a previous article.)';
  6100.             sTemp=L_fpArticle_TEXT;
  6101.             break;
  6102.         case 'fpAspectratio':
  6103.             L_fpAspectratio_TEXT='(aspect ratio: In computer displays and graphics, the ratio of the width of a picture or picture area to its height. For example, an aspect ratio of 2:1 indicates that the picture is twice as wide as it is high.)';
  6104.             sTemp=L_fpAspectratio_TEXT;
  6105.             break;
  6106.         case 'FpAuthorListRight':
  6107.             L_FpAuthorListRight_TEXT='(Author List right: A right that allows a user to add, modify, or remove items in a list, document library, discussion board, or survey.)';
  6108.             sTemp=L_FpAuthorListRight_TEXT;
  6109.             break;
  6110.         case 'FpAuthorRole':
  6111.             L_FpAuthorRole_TEXT='(Author role: A collection of rights that enables a user to view, add, and modify pages and items in a list, document library, discussion board, or survey.)';
  6112.             sTemp=L_FpAuthorRole_TEXT;
  6113.             break;
  6114.         case 'fpAutoThumbnail':
  6115.             L_fpAutoThumbnail_TEXT='(auto thumbnail: A tool that creates a thumbnail (a miniature version) of a picture or photograph and a hyperlink to the original picture.)';
  6116.             sTemp=L_fpAutoThumbnail_TEXT;
  6117.             break;
  6118.         case 'fpBackgroundsound':
  6119.             L_fpBackgroundsound_TEXT='(background sound: A sound clip that is associated with a Web page. When the page is displayed in a Web browser, the sound is played either continuously or a specified number of times.)';
  6120.             sTemp=L_fpBackgroundsound_TEXT;
  6121.             break;
  6122.         case 'fpBanner':
  6123.             L_fpBanner_TEXT='(banner: A section of a Web page containing a graphic element and text, such as the page title. Page banners are usually displayed at the top of Web pages.)';
  6124.             sTemp=L_fpBanner_TEXT;
  6125.             break;
  6126.         case 'fpBannerAdManager':
  6127.             L_fpBannerAdManager_TEXT='(banner ad manager: A component in FrontPage that shows each of a series of designated graphics for a specified number of seconds, then changes to the next graphic via a transition effect. Banner ads usually contain hyperlinks to an advertiser\'s Web site.)';
  6128.             sTemp=L_fpBannerAdManager_TEXT;
  6129.             break;
  6130.         case 'FpBaseline':
  6131.             L_FpBaseline_TEXT='(baseline: In printing and in the display of characters on a screen, an imaginary horizontal line with which the base of each character, excluding descenders, is aligned.)';
  6132.             sTemp=L_FpBaseline_TEXT;
  6133.             break;
  6134.         case 'fpBaselocationbaseURL':
  6135.             L_fpBaselocationbaseURL_TEXT='(base location, base URL: A URL that you can assign to a page to convert all relative URLs on that page to absolute URLs. A base URL should end with a document name part, such as .../sample.htm or a trailing slash.)';
  6136.             sTemp=L_fpBaselocationbaseURL_TEXT;
  6137.             break;
  6138.         case 'FpBrowserRole':
  6139.             L_FpBrowserRole_TEXT='(Browser role: A collection of rights that allows the user to view items in a list, document library, discussion board, or survey.)';
  6140.             sTemp=L_FpBrowserRole_TEXT;
  6141.             break;
  6142.         case 'Fpbuiltinstyle':
  6143.             L_Fpbuiltinstyle_TEXT='(built-in style: The formatting attributes that are available by default in the FrontPage style list.)';
  6144.             sTemp=L_Fpbuiltinstyle_TEXT;
  6145.             break;
  6146.         case 'fpCategory':
  6147.             L_fpCategory_TEXT='(category: A classification for labeling and grouping Web pages and files by common criteria such as page contents, file types, or a similar distinction.)';
  6148.             sTemp=L_fpCategory_TEXT;
  6149.             break;
  6150.         case 'fpCellpadding':
  6151.             L_fpCellpadding_TEXT='(cell padding: The space between the contents and the inside edges of a table cell.)';
  6152.             sTemp=L_fpCellpadding_TEXT;
  6153.             break;
  6154.         case 'fpCellspacing':
  6155.             L_fpCellspacing_TEXT='(cell spacing: The amount of space between cells in a table. Cell spacing is the thickness, in pixels, of the walls surrounding each cell.)';
  6156.             sTemp=L_fpCellspacing_TEXT;
  6157.             break;
  6158.         case 'fpCGI':
  6159.             L_fpCGI_TEXT='(CGI: Common Gateway Interface. A standard method of extending Web server functionality by executing programs or scripts on a Web server in response to Web browser requests, such as in form processing. Use of CGI can make a Web page more dynamic.)';
  6160.             sTemp=L_fpCGI_TEXT;
  6161.             break;
  6162.         case 'FpCharacterStyle':
  6163.             L_FpCharacterStyle_TEXT='(character style: A combination of any of the character-formatting options that are identified by a style name.)';
  6164.             sTemp=L_FpCharacterStyle_TEXT;
  6165.             break;
  6166.         case 'FpClassSelector':
  6167.             L_FpClassSelector_TEXT='(class selector: In cascading style sheets, a name identifying a user-defined style. Depending on how it\'s defined, a class selector can be used with a single type of tag or with any HTML tag inside the BODY element.)';
  6168.             sTemp=L_FpClassSelector_TEXT;
  6169.             break;
  6170.         case 'fpClient':
  6171.             L_fpClient_TEXT='(client: On a local area network (LAN) or the Internet, a computer that accesses shared network resources that are provided by another computer.)';
  6172.             sTemp=L_fpClient_TEXT;
  6173.             break;
  6174.         case 'fpClientsideimagemap':
  6175.             L_fpClientsideimagemap_TEXT='(client-side image map: An image map that encodes the destination URL of each hot spot directly on a Web page. These image maps don\'t require processing from a server to allow a site visitor to follow the hyperlinks on the image map.)';
  6176.             sTemp=L_fpClientsideimagemap_TEXT;
  6177.             break;
  6178.         case 'fpClientsideprogram':
  6179.             L_fpClientsideprogram_TEXT='(client-side program: On the Internet, a program that is run on a client computer rather than on a server computer.)';
  6180.             sTemp=L_fpClientsideprogram_TEXT;
  6181.             break;
  6182.         case 'fpcodec':
  6183.             L_fpcodec_TEXT='(codec: Short for compression/decompression. A software program that processes video through complex algorithms that compress the file for storage or transmittal and then decompress it for playback.)';
  6184.             sTemp=L_fpcodec_TEXT;
  6185.             break;
  6186.         case 'fpcodesnippet':
  6187.             L_fpcodesnippet_TEXT='(code snippet: One or more lines of HTML or other code that is frequently used. Instead of typing the code, you can insert the code snippet. Microsoft FrontPage includes several predefined code snippets. You can also create custom code snippets.)';
  6188.             sTemp=L_fpcodesnippet_TEXT;
  6189.             break;
  6190.         case 'fpColoraveragetool':
  6191.             L_fpColoraveragetool_TEXT='(color average tool: Tool that is used by dragging the eyedropper tool across a selection of graphics or various solid colors on a Web page and thereby determining the average color spectrum.)';
  6192.             sTemp=L_fpColoraveragetool_TEXT;
  6193.             break;
  6194.         case 'FpCommandTimeout':
  6195.             L_FpCommandTimeout_TEXT='(command timeout: The amount of time that is allotted for executing a command against a database. After the allotted amount of time, an error occurs.)';
  6196.             sTemp=L_FpCommandTimeout_TEXT;
  6197.             break;
  6198.         case 'fpComment':
  6199.             L_fpComment_TEXT='(comment: Text that can be viewed in Page view but not in a Web browser. Comment text is used to insert notes to other authors during construction of a page. Site visitors can view comments in the source HTML of the page.)';
  6200.             sTemp=L_fpComment_TEXT;
  6201.             break;
  6202.         case 'fpComponent':
  6203.             L_fpComponent_TEXT='(component: A built-in FrontPage object that is evaluated and executed when an author saves the page or, in some cases, when a site visitor goes to the page. Most components generate HTML. Components include search forms, and Save Results form handlers.)';
  6204.             sTemp=L_fpComponent_TEXT;
  6205.             break;
  6206.         case 'fpConfirmationFieldcomponent':
  6207.             L_fpConfirmationFieldcomponent_TEXT='(Confirmation Field component: A component in FrontPage that is replaced with the contents of a form field. It is useful on a form confirmation page, where it can display a site visitor\'s name or any other data entered into a field.)';
  6208.             sTemp=L_fpConfirmationFieldcomponent_TEXT;
  6209.             break;
  6210.         case 'fpConfirmationpage':
  6211.             L_fpConfirmationpage_TEXT='(confirmation page: A page that is displayed in a Web browser, confirming that data entered into a form has been successfully submitted.)';
  6212.             sTemp=L_fpConfirmationpage_TEXT;
  6213.             break;
  6214.         case 'FpConnectionTimeout':
  6215.             L_FpConnectionTimeout_TEXT='(connection timeout: The amount of time allotted for establishing a connection to a database. After the allotted amount of time, an error occurs.)';
  6216.             sTemp=L_FpConnectionTimeout_TEXT;
  6217.             break;
  6218.         case 'FpContributorRole':
  6219.             L_FpContributorRole_TEXT='(Contributor role: A collection of rights that enable the user to view pages and documents in a library and to contribute to discussions. This is a default role.)';
  6220.             sTemp=L_FpContributorRole_TEXT;
  6221.             break;
  6222.         case 'FpCss':
  6223.             L_FpCss_TEXT='(CSS: A cascading style sheet is a document containing style information that can be referenced by multiple Web pages. Styles define appearance and formatting of content on Web pages and allow authors more control over how content is displayed in browsers.)';
  6224.             sTemp=L_FpCss_TEXT;
  6225.             break;
  6226.         case 'FpDatabaseColumnValue':
  6227.             L_FpDatabaseColumnValue_TEXT='(database column value: The placeholder for a database field that is displayed inside a database results region.)';
  6228.             sTemp=L_FpDatabaseColumnValue_TEXT;
  6229.             break;
  6230.         case 'FpDatabaseConnection':
  6231.             L_FpDatabaseConnection_TEXT='(database connection: A connection that specifies the name, type, location, and optional information for a database.)';
  6232.             sTemp=L_FpDatabaseConnection_TEXT;
  6233.             break;
  6234.         case 'fpDatabaseresultsregion':
  6235.             L_fpDatabaseresultsregion_TEXT='(Database Results region: An area on an Active Server Page that can be dynamically populated by the results of a database query when the page is displayed in a Web browser.)';
  6236.             sTemp=L_fpDatabaseresultsregion_TEXT;
  6237.             break;
  6238.         case 'fpDatabaseResultsWizard':
  6239.             L_fpDatabaseResultsWizard_TEXT='(Database Results Wizard: A FrontPage wizard that guides you through creating a region on a page that displays information obtained from the records in a database. You can use an existing database to accomplish this or let the wizard create one for you.)';
  6240.             sTemp=L_fpDatabaseResultsWizard_TEXT;
  6241.             break;
  6242.         case 'FpDataSource':
  6243.             L_FpDataSource_TEXT='(data source: The database or file that isaccessed by a driver and identified by a data source name (DSN).)';
  6244.             sTemp=L_FpDataSource_TEXT;
  6245.             break;
  6246.         case 'fpDatavalidation':
  6247.             L_fpDatavalidation_TEXT='(data validation: A set of rules that you can apply to form fields to restrict the type of information that site visitors enter into forms. For example, you can set rules so that only letters, and not numbers, can be entered into a \"name\" field on a form.)';
  6248.             sTemp=L_fpDatavalidation_TEXT;
  6249.             break;
  6250.         case 'fpDefaulthyperlink':
  6251.             L_fpDefaulthyperlink_TEXT='(default hyperlink: In an image map, the hyperlink that site visitors follow when they click an area of a picture where there are no hot spots.)';
  6252.             sTemp=L_fpDefaulthyperlink_TEXT;
  6253.             break;
  6254.         case 'fpDesigntimecontrol':
  6255.             L_fpDesigntimecontrol_TEXT='(design-time control: An ActiveX control that is used while designing or editing a page.)';
  6256.             sTemp=L_fpDesigntimecontrol_TEXT;
  6257.             break;
  6258.         case 'fpDiscussionformhandler':
  6259.             L_fpDiscussionformhandler_TEXT='(Discussion form handler: In FrontPage, a form handler that allows site visitors to participate in an online discussion by using a form.)';
  6260.             sTemp=L_fpDiscussionformhandler_TEXT;
  6261.             break;
  6262.         case 'FpDiskbasedWebSite':
  6263.             L_FpDiskbasedWebSite_TEXT='(disk-based Web site: A Web site that is hosted on a local computer.)';
  6264.             sTemp=L_FpDiskbasedWebSite_TEXT;
  6265.             break;
  6266.         case 'fpDistributedPasswordAuthentication':
  6267.             L_fpDistributedPasswordAuthentication_TEXT='(DPA: Distributed password authentication. An advanced method of user authentication that allows a single user logon. Support is provided by the Microsoft Membership System and is optimized for the needs of Internet service providers and online services.)';
  6268.             sTemp=L_fpDistributedPasswordAuthentication_TEXT;
  6269.             break;
  6270.         case 'fpDomainname':
  6271.             L_fpDomainname_TEXT='(domain name: The address of a network location that identifies its owner in this specific format: server.organization.type. For example, www.whitehouse.gov identifies the Web server at the White House, which is part of the U.S. government.)';
  6272.             sTemp=L_fpDomainname_TEXT;
  6273.             break;
  6274.         case 'fpEditor':
  6275.             L_fpEditor_TEXT='(editor: A program that creates files or makes changes to existing files. FrontPage has editors for WYSIWYG, code, text, and CSS. You can also associate files with external editors.)';
  6276.             sTemp=L_fpEditor_TEXT;
  6277.             break;
  6278.         case 'fpEmail':
  6279.             L_fpEmail_TEXT='(e-mail: Abbreviation for electronic mail. A way to send text messages and file attachments over the Internet or a network.)';
  6280.             sTemp=L_fpEmail_TEXT;
  6281.             break;
  6282.         case 'FpEmbeddedCascadingStyleSheet':
  6283.             L_FpEmbeddedCascadingStyleSheet_TEXT='(embedded cascading style sheet: A cascading style sheet contained within the Web page to which it is applied.)';
  6284.             sTemp=L_FpEmbeddedCascadingStyleSheet_TEXT;
  6285.             break;
  6286.         case 'fpEmbeddedfiles':
  6287.             L_fpEmbeddedfiles_TEXT='(embedded files: In FrontPage, graphics, pictures, sounds, and video clips that you insert in a Web page from a file system or the clipboard. You are prompted to save embedded files when you save the page.)';
  6288.             sTemp=L_fpEmbeddedfiles_TEXT;
  6289.             break;
  6290.         case 'fpEPS':
  6291.             L_fpEPS_TEXT='(EPS: Encapsulated PostScript. An extension of the PostScript graphics file format developed by Adobe Systems. EPS enables PostScript graphics files to be incorporated into other documents.)';
  6292.             sTemp=L_fpEPS_TEXT;
  6293.             break;
  6294.         case 'fpExecutablefolder':
  6295.             L_fpExecutablefolder_TEXT='(executable folder: A folder in a FrontPage-based Web site from which scripts and executable programs can be run on a Web server. Server administrators may prohibit the use of executable folders.)';
  6296.             sTemp=L_fpExecutablefolder_TEXT;
  6297.             break;
  6298.         case 'FpExternalCascadingStyleSheet':
  6299.             L_FpExternalCascadingStyleSheet_TEXT='(external cascading style sheet: A cascading style sheet in a file with a .css file name extension. A .css file  is composed solely of style rules in valid .css syntax, without any surrounding HTML tags.)';
  6300.             sTemp=L_FpExternalCascadingStyleSheet_TEXT;
  6301.             break;
  6302.         case 'fpExternalhyperlink':
  6303.             L_fpExternalhyperlink_TEXT='(external hyperlink: A hyperlink pointing to a page or file that is outside of the current Web site.)';
  6304.             sTemp=L_fpExternalhyperlink_TEXT;
  6305.             break;
  6306.         case 'fpExternalstylesheet':
  6307.             L_fpExternalstylesheet_TEXT='(external style sheet: A cascading style sheet in a file with a .css file name extension. A .css file is composed solely of style rules in valid .css syntax, without any surrounding HTML tags. You can link one or more Web pages to an external style sheet.)';
  6308.             sTemp=L_fpExternalstylesheet_TEXT;
  6309.             break;
  6310.         case 'fpFAQ':
  6311.             L_fpFAQ_TEXT='(FAQ: Frequently Asked Questions. A document listing common questions and answers on a particular subject.)';
  6312.             sTemp=L_fpFAQ_TEXT;
  6313.             break;
  6314.         case 'FpFieldValue':
  6315.             L_FpFieldValue_TEXT='(field value: The contents of a database field displayed inside a database results region, as shown in a Web browser.)';
  6316.             sTemp=L_FpFieldValue_TEXT;
  6317.             break;
  6318.         case 'fpFile':
  6319.             L_fpFile_TEXT='(file: A named collection of information that is stored on a computer. Also, an Internet protocol that refers to files on a disk or local area network (LAN). In FrontPage, you can create hyperlinks to files (using file://) in Page view.)';
  6320.             sTemp=L_fpFile_TEXT;
  6321.             break;
  6322.         case 'FpFileDsn':
  6323.             L_FpFileDsn_TEXT='(file DSN: file Data Source Names. A file that stores information about a database connection. The file has a .dsn file name extension.)';
  6324.             sTemp=L_FpFileDsn_TEXT;
  6325.             break;
  6326.         case 'fpfiletransferprotocolftp':
  6327.             L_fpfiletransferprotocolftp_TEXT='(File Transfer Protocol (FTP): A protocol for copying files to and from remote computer systems on a network or the Internet. FTP sites are frequently used on the Internet for making files and folders publicly available.)';
  6328.             sTemp=L_fpfiletransferprotocolftp_TEXT;
  6329.             break;
  6330.         case 'fpFiletype':
  6331.             L_fpFiletype_TEXT='(file type: The format of a file, commonly indicated by its file name extension. Computer applications usually work on a limited set of file types.)';
  6332.             sTemp=L_fpFiletype_TEXT;
  6333.             break;
  6334.         case 'fpfilter':
  6335.             L_fpfilter_TEXT='(filter: A set of criteria that is applied to data in order to display a subset of the data or to sort the data.)';
  6336.             sTemp=L_fpfilter_TEXT;
  6337.             break;
  6338.         case 'fpFirewall':
  6339.             L_fpFirewall_TEXT='(firewall: A method of protecting the files and programs on one network from users on another network. A company will typically install a firewall to give users access to the Internet while protecting their internal information.)';
  6340.             sTemp=L_fpFirewall_TEXT;
  6341.             break;
  6342.         case 'fpFolder':
  6343.             L_fpFolder_TEXT='(folder: A named storage area on a computer containing files and other folders.)';
  6344.             sTemp=L_fpFolder_TEXT;
  6345.             break;
  6346.         case 'fpFoldersview':
  6347.             L_fpFoldersview_TEXT='(folders view: The view of a Web site that shows how the content of the site is organized. You can create, delete, copy, and move folders and files in Folders view.)';
  6348.             sTemp=L_fpFoldersview_TEXT;
  6349.             break;
  6350.         case 'fpForm':
  6351.             L_fpForm_TEXT='(form: A set of data-entry fields on a page that are processed on a Web server. The data is sent to the server when a site visitor submits the form by clicking a button or, in some cases, by clicking a graphic.)';
  6352.             sTemp=L_fpForm_TEXT;
  6353.             break;
  6354.         case 'fpFormfield':
  6355.             L_fpFormfield_TEXT='(form field: A data-entry field on a page. A site visitor supplies information in a field either by typing text or by selecting a value.)';
  6356.             sTemp=L_fpFormfield_TEXT;
  6357.             break;
  6358.         case 'fpFormhandler':
  6359.             L_fpFormhandler_TEXT='(form handler: A program on a server that is executed when a site visitor submits a form. A form in FrontPage is associated with a form handler.)';
  6360.             sTemp=L_fpFormhandler_TEXT;
  6361.             break;
  6362.         case 'fpFrame':
  6363.             L_fpFrame_TEXT='(frame: An area of a Web browser window that is defined by a frames page. You display a page in a frame by creating a hyperlink to the page and specifying the frame as part of the hyperlink.)';
  6364.             sTemp=L_fpFrame_TEXT;
  6365.             break;
  6366.         case 'fpFrameset':
  6367.             L_fpFrameset_TEXT='(frameset: A page that divides a Web browser window into different areas called frames that can independently display several Web pages.)';
  6368.             sTemp=L_fpFrameset_TEXT;
  6369.             break;
  6370.         case 'fpframespagehtmlbutton':
  6371.             L_fpframespagehtmlbutton_TEXT='(frames page HTML button: The tab in Page view in FrontPage that shows the HTML of the active frames page.)';
  6372.             sTemp=L_fpframespagehtmlbutton_TEXT;
  6373.             break;
  6374.         case 'fpFrontPageServerExtensions':
  6375.             L_fpFrontPageServerExtensions_TEXT='(FrontPage Server Extensions: A set of programs and scripts that support authoring in FrontPage and extend the functionality of a Web server.)';
  6376.             sTemp=L_fpFrontPageServerExtensions_TEXT;
  6377.             break;
  6378.         case 'fpfunction':
  6379.             L_fpfunction_TEXT='(function: An action or operation that is performed by a script. A function may return a value or other result.)';
  6380.             sTemp=L_fpfunction_TEXT;
  6381.             break;
  6382.         case 'fpGatewayscript':
  6383.             L_fpGatewayscript_TEXT='(gateway script: A standard method of extending Web server functionality by executing programs or scripts on a Web server in response to Web browser requests, such as in form processing. Use of a common gateway interface can make a web page more dynamic.)';
  6384.             sTemp=L_fpGatewayscript_TEXT;
  6385.             break;
  6386.         case 'fpHeading':
  6387.             L_fpHeading_TEXT='(heading: A paragraph style that is displayed in a typeface larger than body text. The size of a heading is related to its level: Heading 1 is largest, Heading 2 is slightly smaller, and so on. Headings provide titles for text paragraphs or entire pages.)';
  6388.             sTemp=L_fpHeading_TEXT;
  6389.             break;
  6390.         case 'FpHexadecimal':
  6391.             L_FpHexadecimal_TEXT='(hexadecimal: A base-16 number system represented by the digits 0 through 9 and the uppercase or lowercase letters A (equivalent to decimal 10) through F (equivalent to decimal 15). Hexadecimal values are commonly used in HTML code to identify colors..)';
  6392.             sTemp=L_FpHexadecimal_TEXT;
  6393.             break;
  6394.         case 'fpHiddenfield':
  6395.             L_fpHiddenfield_TEXT='(hidden field: A form field that is invisible to a site visitor but supplies data to a form handler. When a form is submitted, hidden fields are passed to the form handler along with name-value pairs for each visible form field.)';
  6396.             sTemp=L_fpHiddenfield_TEXT;
  6397.             break;
  6398.         case 'fpHiddenfolder':
  6399.             L_fpHiddenfolder_TEXT='(hidden folder: A folder in a Web site in FrontPage that has a name beginning with an underscore character, as in _hidden. By default, pages and files in hidden folders cannot be viewed in a Web browser.)';
  6400.             sTemp=L_fpHiddenfolder_TEXT;
  6401.             break;
  6402.         case 'fphit':
  6403.             L_fphit_TEXT='(hit: In Web site usage reports, a value that indicates that an individual file has been accessed. Hits are recorded for each file accessed, including graphics, animations, and other files that are inserted or embedded in a Web page.)';
  6404.             sTemp=L_fphit_TEXT;
  6405.             break;
  6406.         case 'fpHitCountercomponent':
  6407.             L_fpHitCountercomponent_TEXT='(Hit Counter component: A component in FrontPage that keeps track of the number of visitors to a World Wide Web site.)';
  6408.             sTemp=L_fpHitCountercomponent_TEXT;
  6409.             break;
  6410.         case 'fpHost':
  6411.             L_fpHost_TEXT='(host: A computer that offers services on a network. On the World Wide Web, a host is a computer that runs Web server software that responds to requests sent by using Internet protocols. Also called server.)';
  6412.             sTemp=L_fpHost_TEXT;
  6413.             break;
  6414.         case 'fpHostname':
  6415.             L_fpHostname_TEXT='(host name: In a URL, a unique name that identifies an Internet server. A host name has two or more parts, separated by periods, as in microsoft.com. Also called network location or Internet address.)';
  6416.             sTemp=L_fpHostname_TEXT;
  6417.             break;
  6418.         case 'fpHoverButtoncomponent':
  6419.             L_fpHoverButtoncomponent_TEXT='(Hover Button component: An animated button on a Web page that is activated when a mouse pointer is moved over the button or when the button is clicked.)';
  6420.             sTemp=L_fpHoverButtoncomponent_TEXT;
  6421.             break;
  6422.         case 'fpHTMLattribute':
  6423.             L_fpHTMLattribute_TEXT='(HTML attribute: A value within an HTML tag that assigns additional properties to the object being defined. FrontPage assigns some attributes automatically when you create an object such as a paragraph.)';
  6424.             sTemp=L_fpHTMLattribute_TEXT;
  6425.             break;
  6426.         case 'fpHyperlinksview':
  6427.             L_fpHyperlinksview_TEXT='(Hyperlinks view: A view in FrontPage that shows the status of the hyperlinks in a Web site. A list shows both internal and external hyperlinks, and graphically indicates whether the hyperlinks have been verified or whether they are broken.)';
  6428.             sTemp=L_fpHyperlinksview_TEXT;
  6429.             break;
  6430.         case 'fpHypertext':
  6431.             L_fpHypertext_TEXT='(hypertext: Originally, any textual information on a computer containing links to other information (called hyperlinks). On the World Wide Web, it\'s the main way to navigate among pages and Web sites by linking from text, pictures, graphics, or image maps.)';
  6432.             sTemp=L_fpHypertext_TEXT;
  6433.             break;
  6434.         case 'fpIDselector':
  6435.             L_fpIDselector_TEXT='(ID selector: In a cascading style sheet style definition (or style rule), a selector that is used to define a style for an individual page element, usually as an inline style.)';
  6436.             sTemp=L_fpIDselector_TEXT;
  6437.             break;
  6438.         case 'fpIIS':
  6439.             L_fpIIS_TEXT='(IIS: Internet Information Services. Microsoft Web server software that uses Hypertext Transfer Protocol to deliver World Wide Web documents. IIS incorporates various functions for security, allows for CGI programs, and also provides for FTP servers.)';
  6440.             sTemp=L_fpIIS_TEXT;
  6441.             break;
  6442.         case 'fpIncludePagecomponent':
  6443.             L_fpIncludePagecomponent_TEXT='(Include Page component: A component in FrontPage that is replaced with the contents of another page in the Web site. This lets you update parts of many pages in one step.)';
  6444.             sTemp=L_fpIncludePagecomponent_TEXT;
  6445.             break;
  6446.         case 'fpInitialpage':
  6447.             L_fpInitialpage_TEXT='(initial page: The page that is initially displayed in a frame when a site visitor browses to a frames page containing the frame. In FrontPage, you can assign the initial page to a frame in Page view.)';
  6448.             sTemp=L_fpInitialpage_TEXT;
  6449.             break;
  6450.         case 'FpInlineCascadingStyleSheet':
  6451.             L_FpInlineCascadingStyleSheet_TEXT='(inline cascading style sheet: A cascading style sheet that is applied to a single page element, or to a specified sequence of page elements.)';
  6452.             sTemp=L_FpInlineCascadingStyleSheet_TEXT;
  6453.             break;
  6454.         case 'fpInlinestyle':
  6455.             L_fpInlinestyle_TEXT='(inline style: A method of applying cascading style sheet properties and values to an element on a page, such as a table. You can use this method even if the page is not linked to an external style sheet or does not contain an embedded style sheet.)';
  6456.             sTemp=L_fpInlinestyle_TEXT;
  6457.             break;
  6458.         case 'fpInterlacedGIF':
  6459.             L_fpInterlacedGIF_TEXT='(interlaced GIF: A picture in GIF format that is gradually displayed in a Web browser, showing increasingly detailed versions of the picture until the entire file has finished downloading.)';
  6460.             sTemp=L_fpInterlacedGIF_TEXT;
  6461.             break;
  6462.         case 'fpInternalhyperlink':
  6463.             L_fpInternalhyperlink_TEXT='(internal hyperlink: A region in text or graphics that you click to access another page within the same Web site.)';
  6464.             sTemp=L_fpInternalhyperlink_TEXT;
  6465.             break;
  6466.         case 'fpInternetaddress':
  6467.             L_fpInternetaddress_TEXT='(Internet address: In a URL, a unique name that identifies an Internet server. An Internet address has two or more parts, separated by periods, as in microsoft.com. Also called host name or network location.)';
  6468.             sTemp=L_fpInternetaddress_TEXT;
  6469.             break;
  6470.         case 'fpIP':
  6471.             L_fpIP_TEXT='(IP: Internet Protocol. Internet software that divides data into packets for transmission over the Internet. Computers must run IP to communicate across the Internet.)';
  6472.             sTemp=L_fpIP_TEXT;
  6473.             break;
  6474.         case 'fpIPaddress':
  6475.             L_fpIPaddress_TEXT='(IP address: An assigned number used to identify a computer that is connected to the Internet, much in the same way a telephone number identifies a telephone on a telephone network. An IP address is four sets of numbers separated by periods.)';
  6476.             sTemp=L_fpIPaddress_TEXT;
  6477.             break;
  6478.         case 'fpIPaddressmask':
  6479.             L_fpIPaddressmask_TEXT='(IP address mask: A range of IP addresses that are defined so that only computers with IP addresses within the range are allowed access to an Internet service. To mask a portion of the IP address, replace it with the asterisk wild card character (*).)';
  6480.             sTemp=L_fpIPaddressmask_TEXT;
  6481.             break;
  6482.         case 'fpISAPI':
  6483.             L_fpISAPI_TEXT='(ISAPI: Internet Server Application Programming Interface. A Web server application-development interface, developed by Process Software and Microsoft, that can be used in place of CGI.)';
  6484.             sTemp=L_fpISAPI_TEXT;
  6485.             break;
  6486.         case 'fpJava':
  6487.             L_fpJava_TEXT='(Java: A programming language developed by Sun Microsystems, Inc. Applications written in Java are platform-independent, which means they can run on any type of computer, if the Java Virtual Machine is installed on that computer.)';
  6488.             sTemp=L_fpJava_TEXT;
  6489.             break;
  6490.         case 'fpLink':
  6491.             L_fpLink_TEXT='(link: Also called hyperlink. A pointer from text, from a picture or a graphic, or from an image map to a page or file on the World Wide Web. On the World Wide Web, hyperlinks are the primary way to browse between pages and among Web sites.)';
  6492.             sTemp=L_fpLink_TEXT;
  6493.             break;
  6494.         case 'FpLinkBar':
  6495.             L_FpLinkBar_TEXT='(link bar: A collection of graphic or text buttons representing hyperlinks to pages both within your Web site and to external sites.)';
  6496.             sTemp=L_FpLinkBar_TEXT;
  6497.             break;
  6498.         case 'FpListField':
  6499.             L_FpListField_TEXT='(list field: One of a set of elements that comprises an item in a list, document library, discussion board, or survey. On a form, list fields allow users to enter data; in a view, list fields display data.)';
  6500.             sTemp=L_FpListField_TEXT;
  6501.             break;
  6502.         case 'FpListForm':
  6503.             L_FpListForm_TEXT='(list form: A set of data-entry fields on a page that are processed on a Web server that is running Windows SharePoint Services. List forms enable users to add, modify, and remove items in lists, document libraries, and surveys.)';
  6504.             sTemp=L_FpListForm_TEXT;
  6505.             break;
  6506.         case 'fplistmembers':
  6507.             L_fplistmembers_TEXT='(list members: Valid code elements (properties, methods, events, and objects) for a specific object reference.)';
  6508.             sTemp=L_fplistmembers_TEXT;
  6509.             break;
  6510.         case 'fpLiveweb':
  6511.             L_fpLiveweb_TEXT='(live web: A Web site that has been published to a Web server and can be browsed by site visitors. Editing a live Web site with FrontPage lets site visitors immediately see all page updates and changes every time the page is saved.)';
  6512.             sTemp=L_fpLiveweb_TEXT;
  6513.             break;
  6514.         case 'FpLocalhost':
  6515.             L_FpLocalhost_TEXT='(localhost: The name that is used to represent the same computer on which a TCP/IP message originates. If you access a server-based Web site by using http://localhost, the request does not actually go out to the Internet.)';
  6516.             sTemp=L_FpLocalhost_TEXT;
  6517.             break;
  6518.         case 'FpManageListsRight':
  6519.             L_FpManageListsRight_TEXT='(Manage Lists right: A right that allows a user to add, modify, and remove lists, document libraries, discussion boards, and surveys.)';
  6520.             sTemp=L_FpManageListsRight_TEXT;
  6521.             break;
  6522.         case 'fpMarqueecomponent':
  6523.             L_fpMarqueecomponent_TEXT='(Marquee component: A region on a page that displays a horizontally scrolling text message.)';
  6524.             sTemp=L_fpMarqueecomponent_TEXT;
  6525.             break;
  6526.         case 'fpMIMEtype':
  6527.             L_fpMIMEtype_TEXT='(MIME type: Multipurpose Internet Mail Extensions type. A method used by Web browsers to associate files of a certain type with applications that display files of that type.)';
  6528.             sTemp=L_fpMIMEtype_TEXT;
  6529.             break;
  6530.         case 'fpMultihosting':
  6531.             L_fpMultihosting_TEXT='(multi-hosting: The ability of a Web server to support more than one Internet address and more than one home page. Also called multihoming.)';
  6532.             sTemp=L_fpMultihosting_TEXT;
  6533.             break;
  6534.         case 'fpNamevaluepair':
  6535.             L_fpNamevaluepair_TEXT='(name-value pair: The name of a form field and the value of the field at the time the form is submitted. Each field in a form can have one or more name-value pairs, and the form itself can have one or more name-value pairs.)';
  6536.             sTemp=L_fpNamevaluepair_TEXT;
  6537.             break;
  6538.         case 'fpNavigationview':
  6539.             L_fpNavigationview_TEXT='(Navigation view: The view in FrontPage that is used to create, display, print, and change the navigation structure of a Web site. Navigation view includes a folder-like view, from which you can drag and drop pages into your site structure.)';
  6540.             sTemp=L_fpNavigationview_TEXT;
  6541.             break;
  6542.         case 'fpNestedframespage':
  6543.             L_fpNestedframespage_TEXT='(nested frames page: A frames page containing another frames page inside one of its frames.)';
  6544.             sTemp=L_fpNestedframespage_TEXT;
  6545.             break;
  6546.         case 'fpNews':
  6547.             L_fpNews_TEXT='(news: The Internet protocol for retrieving files from an Internet newsgroup. You can create news hyperlinks (news://) in FrontPage.)';
  6548.             sTemp=L_fpNews_TEXT;
  6549.             break;
  6550.         case 'FpNsapi':
  6551.             L_FpNsapi_TEXT='(NSAPI: Netscape Server Application Programming Interface. A Web server application development interface developed by Netscape Communications Corporation.)';
  6552.             sTemp=L_FpNsapi_TEXT;
  6553.             break;
  6554.         case 'fpNTLM':
  6555.             L_fpNTLM_TEXT='(NTLM: NT LanMan. The Windows NT Challenge/Response authentication protocol. This protocol uses encryption to transmit passwords more securely.)';
  6556.             sTemp=L_fpNTLM_TEXT;
  6557.             break;
  6558.         case 'fpobject':
  6559.             L_fpobject_TEXT='(object: In object-oriented programming, a programming unit that includes both routines and data.)';
  6560.             sTemp=L_fpobject_TEXT;
  6561.             break;
  6562.         case 'fpOLE':
  6563.             L_fpOLE_TEXT='(OLE: Object Linking and Embedding. A technology for transferring and sharing information among applications. OLE lets an author invoke different editor components to create a compound document.)';
  6564.             sTemp=L_fpOLE_TEXT;
  6565.             break;
  6566.         case 'fpOnelinetextbox':
  6567.             L_fpOnelinetextbox_TEXT='(one-line text box: A labeled, single-line form field into which site visitors can type text.)';
  6568.             sTemp=L_fpOnelinetextbox_TEXT;
  6569.             break;
  6570.         case 'fpPage':
  6571.             L_fpPage_TEXT='(page: A single document in a Web site written in HTML. You can use FrontPage to create and modify pages without having to know HTML.)';
  6572.             sTemp=L_fpPage_TEXT;
  6573.             break;
  6574.         case 'fpPagebanner':
  6575.             L_fpPagebanner_TEXT='(page banner: A section of a Web page containing a graphic element and text, such as the page title. Page banners are usually displayed at the top of a Web page.)';
  6576.             sTemp=L_fpPagebanner_TEXT;
  6577.             break;
  6578.         case 'fpPagetemplate':
  6579.             L_fpPagetemplate_TEXT='(page template: A predesigned, generic Web page that you can use to create new custom pages. Some of the page templates in FrontPage provide typical page content, while others provide common page layouts.)';
  6580.             sTemp=L_fpPagetemplate_TEXT;
  6581.             break;
  6582.         case 'fpPagetitle':
  6583.             L_fpPagetitle_TEXT='(page title: A descriptive text string identifying a page.)';
  6584.             sTemp=L_fpPagetitle_TEXT;
  6585.             break;
  6586.         case 'fpPageview':
  6587.             L_fpPageview_TEXT='(Page view: In FrontPage, the view you use to create, edit, and preview Web pages.)';
  6588.             sTemp=L_fpPageview_TEXT;
  6589.             break;
  6590.         case 'fpParentpage':
  6591.             L_fpParentpage_TEXT='(parent page: In FrontPage, a page in a Web page that is part of the navigation structure of the Web page and is linked to one or more pages on the child level. A page on the child level is accessed from its parent page.)';
  6592.             sTemp=L_fpParentpage_TEXT;
  6593.             break;
  6594.         case 'fpParentweb':
  6595.             L_fpParentweb_TEXT='(parent web: In a hierarchical structure, the Web site immediately above the current Web site.)';
  6596.             sTemp=L_fpParentweb_TEXT;
  6597.             break;
  6598.         case 'fpPCD':
  6599.             L_fpPCD_TEXT='(PCD: A graphics file format developed by Eastman Kodak Company. FrontPage can import PCD files. Stands for Photo CD.)';
  6600.             sTemp=L_fpPCD_TEXT;
  6601.             break;
  6602.         case 'fpPCT':
  6603.             L_fpPCT_TEXT='(PCT: Personal Communications Technology. An enhanced version of Secure Sockets Layer (SSL), which is a protocol for transmitting information over the Internet more securely.)';
  6604.             sTemp=L_fpPCT_TEXT;
  6605.             break;
  6606.         case 'fpPCX':
  6607.             L_fpPCX_TEXT='(PCX: A graphics file format that compresses the graphic\'s data with RLE-type compression, used by early versions of Windows Paintbrush. FrontPage can import PCX files.)';
  6608.             sTemp=L_fpPCX_TEXT;
  6609.             break;
  6610.         case 'fpPicture':
  6611.             L_fpPicture_TEXT='(picture or image: A graphics file that can be inserted on a Web page and displayed in a browser. FrontPage lets you import several graphics formats. Imported graphics are converted to GIF format or JPEG format when the page is saved.)';
  6612.             sTemp=L_fpPicture_TEXT;
  6613.             break;
  6614.         case 'fpPlugin':
  6615.             L_fpPlugin_TEXT='(plug-in: One of a set of software modules that integrate into Web browsers to offer a range of interactive and multimedia capabilities.)';
  6616.             sTemp=L_fpPlugin_TEXT;
  6617.             break;
  6618.         case 'fpPort':
  6619.             L_fpPort_TEXT='(port: One of the network input/output channels of a computer running TCP/IP. On the World Wide Web, it usually refers to the port number a server is running on. One computer can have many Web servers running on it, but only one server can run on a port.)';
  6620.             sTemp=L_fpPort_TEXT;
  6621.             break;
  6622.         case 'FpPositionBox':
  6623.             L_FpPositionBox_TEXT='(position box: In Design view, a rectangle representing a page area with CSS positioning applied. The position box, which may contain any page elements, is visible only when Show All is selected on the Standard toolbar.)';
  6624.             sTemp=L_FpPositionBox_TEXT;
  6625.             break;
  6626.         case 'FpPositioning':
  6627.             L_FpPositioning_TEXT='(positioning: Positioning is another way to place elements, such as text and graphics, on a page. Positioning lets the page author control the exact location and layer order of a page element.)';
  6628.             sTemp=L_FpPositioning_TEXT;
  6629.             break;
  6630.         case 'fpPPP':
  6631.             L_fpPPP_TEXT='(PPP: Point-to-Point Protocol. An Internet standard for transmitting data over serial links between computers.)';
  6632.             sTemp=L_fpPPP_TEXT;
  6633.             break;
  6634.         case 'FpPrimaryKey':
  6635.             L_FpPrimaryKey_TEXT='(primary key: A field (column) that uniquely identifies each record in a table. A primary key cannot allow Null values and must always have a unique index. A primary key is used to relate a table to foreign keys in other tables.)';
  6636.             sTemp=L_FpPrimaryKey_TEXT;
  6637.             break;
  6638.         case 'FpProductionWebServer':
  6639.             L_FpProductionWebServer_TEXT='(production Web server: A Web server that hosts a live Web site. A production Web server can be browsed by an Internet or intranet audience.)';
  6640.             sTemp=L_FpProductionWebServer_TEXT;
  6641.             break;
  6642.         case 'fpProgressiveJPEG':
  6643.             L_fpProgressiveJPEG_TEXT='(progressive JPEG: An enhancement to the JPEG graphics file format that gradually displays a photo-realistic picture in a Web browser, showing increasingly detailed versions of the picture until the entire file has finished downloading.)';
  6644.             sTemp=L_fpProgressiveJPEG_TEXT;
  6645.             break;
  6646.         case 'fpProperties':
  6647.             L_fpProperties_TEXT='(properties: In FrontPage, the characteristics of an item in the active Web site, such as the title and URL of a site. You can also specify properties for page elements such as tables, graphics, and active elements.)';
  6648.             sTemp=L_fpProperties_TEXT;
  6649.             break;
  6650.         case 'fpProxyserver':
  6651.             L_fpProxyserver_TEXT='(proxy server: An Internet server that acts as a firewall, mediating traffic between a protected network and the Internet.)';
  6652.             sTemp=L_fpProxyserver_TEXT;
  6653.             break;
  6654.         case 'fpRAS':
  6655.             L_fpRAS_TEXT='(RAS: The raster graphics file format developed by Sun Microsystems. FrontPage can import RAS files.)';
  6656.             sTemp=L_fpRAS_TEXT;
  6657.             break;
  6658.         case 'fpreferringdomain':
  6659.             L_fpreferringdomain_TEXT='(referring domain: On the Internet and intranets, the address of a network location from which site visitors follow a hyperlink to your Web site.)';
  6660.             sTemp=L_fpreferringdomain_TEXT;
  6661.             break;
  6662.         case 'fpRegistereduser':
  6663.             L_fpRegistereduser_TEXT='(registered user: A visitor to a Web site whose name and password have been recorded within the site. In FrontPage, you can register site visitors for your Web site with the Registration form handler.)';
  6664.             sTemp=L_fpRegistereduser_TEXT;
  6665.             break;
  6666.         case 'fpRegistrationformhandler':
  6667.             L_fpRegistrationformhandler_TEXT='(Registration form handler: In FrontPage, a form handler that allows site visitors to automatically register themselves for access to a service implemented as a Web site.)';
  6668.             sTemp=L_fpRegistrationformhandler_TEXT;
  6669.             break;
  6670.         case 'fpRelativeURL':
  6671.             L_fpRelativeURL_TEXT='(relative URL: The Internet address of a page relative to the Internet address of the current page. For example, the relative URL Doc/Sample.htm refers to the page Sample.htm in the folder Doc, below the current folder.)';
  6672.             sTemp=L_fpRelativeURL_TEXT;
  6673.             break;
  6674.         case 'fpReportsview':
  6675.             L_fpReportsview_TEXT='(Reports view: The view in FrontPage that allows you to analyze the contents a Web site. You can calculate the total size of the files, show which files aren\'t linked to any other files, identify slow or outdated pages, and so on.)';
  6676.             sTemp=L_fpReportsview_TEXT;
  6677.             break;
  6678.         case 'fpResample':
  6679.             L_fpResample_TEXT='(resample: Changing the pixel dimensions (and therefore the physical file size) of a picture or a graphic. Graphics can be resampled down (the number of pixels decreased) or resampled up (the number of pixels increased).)';
  6680.             sTemp=L_fpResample_TEXT;
  6681.             break;
  6682.         case 'FpRights':
  6683.             L_FpRights_TEXT='(rights: Permission to perform specific actions with site content, such as viewing or modifying a page. Rights are enabled or disabled for a user site group. Users can perform only those actions allowed by the rights assigned to their site group.)';
  6684.             sTemp=L_FpRights_TEXT;
  6685.             break;
  6686.         case 'FpRule':
  6687.             L_FpRule_TEXT='(rule: A set of conditions, actions, and exceptions that run in a document library. For example, all documents older than a year (condition) can be set to a status of \"Expired\" (action), unless they were modified within the last month (exception).)';
  6688.             sTemp=L_FpRule_TEXT;
  6689.             break;
  6690.         case 'fpSaveResultsformhandler':
  6691.             L_fpSaveResultsformhandler_TEXT='(Save Results form handler: In FrontPage, a form handler that gathers information from a form. When a form is submitted, this form handler adds the information to a file on the server in the format you specify or sends it to an e-mail address.)';
  6692.             sTemp=L_fpSaveResultsformhandler_TEXT;
  6693.             break;
  6694.         case 'fpScheduledIncludePagecomponent':
  6695.             L_fpScheduledIncludePagecomponent_TEXT='(Scheduled Include Page component: A component in FrontPage that is replaced with the contents of a file in the current Web site for a specified time period. This is useful for information that has a limited lifetime, such as a new product release.)';
  6696.             sTemp=L_fpScheduledIncludePagecomponent_TEXT;
  6697.             break;
  6698.         case 'fpScheduledPicturecomponent':
  6699.             L_fpScheduledPicturecomponent_TEXT='(Scheduled Picture component: A component in FrontPage that is replaced on the page by a graphic for a specified time period. This is useful for information that has a limited lifetime, such as the announcement of a new product or service.)';
  6700.             sTemp=L_fpScheduledPicturecomponent_TEXT;
  6701.             break;
  6702.         case 'fpScrollingtextbox':
  6703.             L_fpScrollingtextbox_TEXT='(scrolling text box: A labeled, multiple-line form field in which site visitors can type one or more lines of text.)';
  6704.             sTemp=L_fpScrollingtextbox_TEXT;
  6705.             break;
  6706.         case 'fpSearchFormcomponent':
  6707.             L_fpSearchFormcomponent_TEXT='(Search Form component: A component in FrontPage that creates a form that provides full-text searching capability in your Web site.)';
  6708.             sTemp=L_fpSearchFormcomponent_TEXT;
  6709.             break;
  6710.         case 'FpServerbasedWebSite':
  6711.             L_FpServerbasedWebSite_TEXT='(server-based Web site: A Web site hosted by a Web server, such as Microsoft Internet Information Server (MIIS).)';
  6712.             sTemp=L_FpServerbasedWebSite_TEXT;
  6713.             break;
  6714.         case 'fpServersideinclude':
  6715.             L_fpServersideinclude_TEXT='(server-side include: A feature provided by some Web servers that automatically inserts text onto pages when they are fetched by a Web browser.)';
  6716.             sTemp=L_fpServersideinclude_TEXT;
  6717.             break;
  6718.         case 'fpSharedborders':
  6719.             L_fpSharedborders_TEXT='(shared borders: Page regions reserved for content that you want to appear consistently on all your Web pages. Shared borders usually contain link bars, which contain hyperlinks to the other pages and locations.)';
  6720.             sTemp=L_fpSharedborders_TEXT;
  6721.             break;
  6722.         case 'fpsitegroup':
  6723.             L_fpsitegroup_TEXT='(site group: A collection of rights that can be assigned to a user account. You can use the default site groups, modify them, or create your own custom site groups.)';
  6724.             sTemp=L_fpsitegroup_TEXT;
  6725.             break;
  6726.         case 'fpSiteSummaryreport':
  6727.             L_fpSiteSummaryreport_TEXT='(Site Summary report: In FrontPage, the default report displayed in Reports view. A site summary is a combination of several reports that identify unlinked files, slow pages, unverified hyperlinks, broken hyperlinks, page component errors, and so on.)';
  6728.             sTemp=L_fpSiteSummaryreport_TEXT;
  6729.             break;
  6730.         case 'fpSlowpages':
  6731.             L_fpSlowpages_TEXT='(slow pages: Pages that take a long time (30 seconds or more) to download in a Web browser. In FrontPage, you can identify slow pages in your Web site by using Reports view.)';
  6732.             sTemp=L_fpSlowpages_TEXT;
  6733.             break;
  6734.         case 'fpStagingweb':
  6735.             L_fpStagingweb_TEXT='(staging web: A local Web site maintained on a file system or local Web server that currently cannot be browsed by site visitors. These Web sites allow authors and workgroups to make changes or updates to Web sites before they are published.)';
  6736.             sTemp=L_fpStagingweb_TEXT;
  6737.             break;
  6738.         case 'FpStagingWebServer':
  6739.             L_FpStagingWebServer_TEXT='(staging Web server: A Web server where you publish and test your Web site before putting it on a production server. A staging Web server cannot be browsed by an Internet or intranet audience.)';
  6740.             sTemp=L_FpStagingWebServer_TEXT;
  6741.             break;
  6742.         case 'fpStyle':
  6743.             L_fpStyle_TEXT='(style: Styles are used to control the font, alignment, and spacing of text; appearance of background pages; and other HTML attributes. A collection of styles is called a style sheet.)';
  6744.             sTemp=L_fpStyle_TEXT;
  6745.             break;
  6746.         case 'fpsubsite':
  6747.             L_fpsubsite_TEXT='(subsite: A named subdirectory of a Web site that is also a complete site. A subsite can have unique administration, authoring, and browsing permissions.)';
  6748.             sTemp=L_fpsubsite_TEXT;
  6749.             break;
  6750.         case 'fpSubstitutioncomponent':
  6751.             L_fpSubstitutioncomponent_TEXT='(Substitution component: A component in FrontPage that is replaced by the value of a selected page or Web site variable.)';
  6752.             sTemp=L_fpSubstitutioncomponent_TEXT;
  6753.             break;
  6754.         case 'fpSubweb':
  6755.             L_fpSubweb_TEXT='(subsite (formally known as subweb): A named subdirectory of the top level site that is a complete FrontPage-based Web site. Each subsite can have independent administration, authoring and browsing permissions from the top level site and other subsites.)';
  6756.             sTemp=L_fpSubweb_TEXT;
  6757.             break;
  6758.         case 'FpSurvey':
  6759.             L_FpSurvey_TEXT='(survey: Enables users to respond to a set of questions specified by the creator of the survey. Results are tallied in a graphical summary. Requires a Web server that is running SharePoint Services.)';
  6760.             sTemp=L_FpSurvey_TEXT;
  6761.             break;
  6762.         case 'FpSystemDsn':
  6763.             L_FpSystemDsn_TEXT='(system DSN: A system data source name is specific to a local computer. The system or any user with privileges can use a data source that is set up with a system DSN.)';
  6764.             sTemp=L_FpSystemDsn_TEXT;
  6765.             break;
  6766.         case 'fpTable':
  6767.             L_fpTable_TEXT='(table: One or more rows of cells used to organize the layout of a page or to arrange data systematically. In FrontPage, you can place anything in a table cell, including text, graphics, and forms.)';
  6768.             sTemp=L_fpTable_TEXT;
  6769.             break;
  6770.         case 'fpTableofContentscomponent':
  6771.             L_fpTableofContentscomponent_TEXT='(Table of Contents component: A component in FrontPage that creates an outline of your Web site, with hyperlinks to each page. The Table of Contents component updates this outline each time the contents of the site changes.)';
  6772.             sTemp=L_fpTableofContentscomponent_TEXT;
  6773.             break;
  6774.         case 'fpTask':
  6775.             L_fpTask_TEXT='(task: An item associated with a Web site in FrontPage, representing an action you need to do to complete or maintain the site. Some tasks are automatically generated by wizards in FrontPage. You can also add your own tasks.)';
  6776.             sTemp=L_fpTask_TEXT;
  6777.             break;
  6778.         case 'fpTasksview':
  6779.             L_fpTasksview_TEXT='(Tasks view: The view in FrontPage that maintains a list of the tasks required to complete or maintain a Web site. Views in FrontPage provide different ways of looking at the information in your site, so that you can effectively manage your site.)';
  6780.             sTemp=L_fpTasksview_TEXT;
  6781.             break;
  6782.         case 'FpTcpip':
  6783.             L_FpTcpip_TEXT='(TCP/IP: Transmission Control Protocol/Internet Protocol; a protocol for communication between computers. This is the standard for communication over networks, including the Internet.)';
  6784.             sTemp=L_FpTcpip_TEXT;
  6785.             break;
  6786.         case 'fpTemplate':
  6787.             L_fpTemplate_TEXT='(template: A set of predesigned formats for text and graphics on which new Web pages and sites can be based. After a page or site is created using a template, you can customize it.)';
  6788.             sTemp=L_fpTemplate_TEXT;
  6789.             break;
  6790.         case 'fpTheme':
  6791.             L_fpTheme_TEXT='(theme: A theme applies a set of coordinated graphic elements to a document, page, or across all pages in a Web site. Themes can consist of designs and color schemes for fonts, link bars, and other page elements.)';
  6792.             sTemp=L_fpTheme_TEXT;
  6793.             break;
  6794.         case 'fptoplevelsite':
  6795.             L_fptoplevelsite_TEXT='(top level site: The uppermost folder in a hierarchy of Web site folders. A top level site can be hosted on a Web server, a virtual server network, or a local computer hard disk.)';
  6796.             sTemp=L_fptoplevelsite_TEXT;
  6797.             break;
  6798.         case 'FpUniversalDataLink':
  6799.             L_FpUniversalDataLink_TEXT='(UDL: A Universal Data Link contains OLE DB data source object definitions and allows management and loading of connections to OLE DB data sources. The file has the extension .udl.)';
  6800.             sTemp=L_FpUniversalDataLink_TEXT;
  6801.             break;
  6802.         case 'fpurl':
  6803.             L_fpurl_TEXT='(Uniform Resource Locator (URL): An address that specifies a protocol (such as HTTP or FTP) and a location of an object, document, World Wide Web page, or other destination on the Internet or an intranet. For example: http://www.example.com/.)';
  6804.             sTemp=L_fpurl_TEXT;
  6805.             break;
  6806.         case 'FpUsageAnalysis':
  6807.             L_FpUsageAnalysis_TEXT='(usage analysis: Data collected to evaluate how a Web site is being used, such as visitor user names, how often each page was visited, and the types of Web browsers used.)';
  6808.             sTemp=L_FpUsageAnalysis_TEXT;
  6809.             break;
  6810.         case 'Fpuserdefinedstyle':
  6811.             L_Fpuserdefinedstyle_TEXT='(user-defined style: A new style or a modification to a built-in style. User-defined styles always contain cascading style sheet formatting attributes.)';
  6812.             sTemp=L_Fpuserdefinedstyle_TEXT;
  6813.             break;
  6814.         case 'FpViewBar':
  6815.             L_FpViewBar_TEXT='(view bar: A region on a page that displays a list, or library that enables you  to select among different views.)';
  6816.             sTemp=L_FpViewBar_TEXT;
  6817.             break;
  6818.         case 'fpviewitemsright':
  6819.             L_fpviewitemsright_TEXT='(View Items right: A right that allows a user to view items in a list, document library, discussion board, or survey. They cannot add, modify, or remove the items.)';
  6820.             sTemp=L_fpviewitemsright_TEXT;
  6821.             break;
  6822.         case 'fpVirtualserver':
  6823.             L_fpVirtualserver_TEXT='(virtual server: One of multiple Web sites running on the same server, each with a unique domain name and IP address. A Web server that supports virtual servers is called a multihosting Web server.)';
  6824.             sTemp=L_fpVirtualserver_TEXT;
  6825.             break;
  6826.         case 'fpvisit':
  6827.             L_fpvisit_TEXT='(visit: In Web site usage reports, a value that indicates that a site visitor has accessed your Web site and viewed one or more files before following a hyperlink to another site or closing the browser.)';
  6828.             sTemp=L_fpvisit_TEXT;
  6829.             break;
  6830.         case 'fpWashout':
  6831.             L_fpWashout_TEXT='(wash out: A graphic-editing effect available in Page view in FrontPage that creates a low-resolution, high-contrast version of the graphic.)';
  6832.             sTemp=L_fpWashout_TEXT;
  6833.             break;
  6834.         case 'fpWatermark':
  6835.             L_fpWatermark_TEXT='(watermark: A graphic that appears on the backgrounds of pages in a Web site to identify the pages, but does not scroll as the page scrolls. Not all Web browsers support watermarks.)';
  6836.             sTemp=L_fpWatermark_TEXT;
  6837.             break;
  6838.         case 'fpWeb':
  6839.             L_fpWeb_TEXT='(Web: A home page and its associated pages, graphics, documents, multimedia, and other files stored on a Web server or on a computer hard drive. Same as Web site.)';
  6840.             sTemp=L_fpWeb_TEXT;
  6841.             break;
  6842.         case 'fpwebbaseddistributedauthoringandversioningwebdav':
  6843.             L_fpwebbaseddistributedauthoringandversioningwebdav_TEXT='(WebDAV: An application protocol for publishing and managing files on the World Wide Web. It provides support for storing information about a file, so authors can change a file and its properties without overwriting other changes to that file.)';
  6844.             sTemp=L_fpwebbaseddistributedauthoringandversioningwebdav_TEXT;
  6845.             break;
  6846.         case 'fpWebname':
  6847.             L_fpWebname_TEXT='(Web name: A Web name in FrontPage corresponds to a folder name on a Web server, and is subject to the length, character restrictions, and case sensitivity of that server.)';
  6848.             sTemp=L_fpWebname_TEXT;
  6849.             break;
  6850.         case 'fpWebstructure':
  6851.             L_fpWebstructure_TEXT='(Web site structure: The set of relationships among the pages in a FrontPage-based Web site as defined in Navigation view.  A well-defined structure gives a site visitor a sense of position in a Web site.)';
  6852.             sTemp=L_fpWebstructure_TEXT;
  6853.             break;
  6854.         case 'FpWebview':
  6855.             L_FpWebview_TEXT='(WebView: One of the views available in Open and Save dialog boxes. Displays a Web page with hyperlinks for opening and saving files in document libraries.)';
  6856.             sTemp=L_FpWebview_TEXT;
  6857.             break;
  6858.         case 'FpWinsock':
  6859.             L_FpWinsock_TEXT='(winsock: Short for Windows sockets. An application programming interface standard for software that provides a TCP/IP interface on computers running Windows.)';
  6860.             sTemp=L_FpWinsock_TEXT;
  6861.             break;
  6862.         case 'FpWysiwig':
  6863.             L_FpWysiwig_TEXT='(WYSIWYG: Acronym for What You See Is What You Get. Allows you to view a document as it will appear in the final product and to directly edit the text, graphics, and other elements within that view.)';
  6864.             sTemp=L_FpWysiwig_TEXT;
  6865.             break;
  6866.  
  6867.         // Publisher
  6868.  
  6869.         case 'ofCropmarks':
  6870.             L_ofCropmarks_TEXT='(crop marks: Marks that show where a publication page will be trimmed. Crop marks show only when the page has been printed to a paper size that is larger than the page.)';
  6871.             sTemp=L_ofCropmarks_TEXT;
  6872.             break;
  6873.         case 'pbascender':
  6874.             L_pbascender_TEXT='(ascender: the part of a lowercase Latin letter that extends above the main body, or x-height, of the letters b, d, f, h, k, l and t.)';
  6875.             sTemp=L_pbascender_TEXT;
  6876.             break;
  6877.         case 'pbascenderline':
  6878.             L_pbascenderline_TEXT='(ascender line: the invisible line that marks the typical height of the ascender of the lowercase Latin letters b, d, f, h, k, l, and t.)';
  6879.             sTemp=L_pbascenderline_TEXT;
  6880.             break;
  6881.         case 'PbAttributes':
  6882.             L_PbAttributes_TEXT='(attribute: An object or text feature, such as line fill or text color, that you can manipulate by using drawing tools and menu commands.)';
  6883.             sTemp=L_PbAttributes_TEXT;
  6884.             break;
  6885.         case 'pbautoflow':
  6886.             L_pbautoflow_TEXT='(autoflow: The automatic flowing of text from one frame to another.)';
  6887.             sTemp=L_pbautoflow_TEXT;
  6888.             break;
  6889.         case 'pbBaseline':
  6890.             L_pbBaseline_TEXT='(baseline: The invisible line on which a line of type rests.)';
  6891.             sTemp=L_pbBaseline_TEXT;
  6892.             break;
  6893.         case 'pbbaselineguides':
  6894.             L_pbbaselineguides_TEXT='(baseline guides: Guides to which lines of text can be aligned to provide a uniform appearance between columns├é┬á of text.)';
  6895.             sTemp=L_pbbaselineguides_TEXT;
  6896.             break;
  6897.         case 'PbBleeds':
  6898.             L_PbBleeds_TEXT='(bleed: the extent to which a picture runs off the printed page.)';
  6899.             sTemp=L_PbBleeds_TEXT;
  6900.             break;
  6901.         case 'pbBodytext':
  6902.             L_pbBodytext_TEXT='(body text: The text that forms the major content of a publication. Does not include titles, headlines, pull quotes, and captions, for example.)';
  6903.             sTemp=L_pbBodytext_TEXT;
  6904.             break;
  6905.         case 'pbBond':
  6906.             L_pbBond_TEXT='(bond: Lightweight paper commonly used for letterhead and other business publications.)';
  6907.             sTemp=L_pbBond_TEXT;
  6908.             break;
  6909.         case 'pbcapheight':
  6910.             L_pbcapheight_TEXT='(cap height: the typical height of an uppercase Latin letter.)';
  6911.             sTemp=L_pbcapheight_TEXT;
  6912.             break;
  6913.         case 'pbcapline':
  6914.             L_pbcapline_TEXT='(cap line: the invisible line that marks the typical height of an uppercase Latin letter.)';
  6915.             sTemp=L_pbcapline_TEXT;
  6916.             break;
  6917.         case 'pbcatalogmerge':
  6918.             L_pbcatalogmerge_TEXT='(catalog merge: The process of combining information from a data source with a template to create pages that display multiple records per page. You can add the merged pages to an existing publication or create a new publication. )';
  6919.             sTemp=L_pbcatalogmerge_TEXT;
  6920.             break;
  6921.         case 'pbcatalogmergearea':
  6922.             L_pbcatalogmergearea_TEXT='(catalog merge area: The area in a catalog merge template into which merge fields are inserted. When a merge is completed, data from a data source populates each field, and the catalog merge area will repeat and display multiple records on each page.)';
  6923.             sTemp=L_pbcatalogmergearea_TEXT;
  6924.             break;
  6925.         case 'pbcenterlinetrap':
  6926.             L_pbcenterlinetrap_TEXT='(centerline trap: The small overlap created where two differently colored objects that are close in luminance abut on a printed page.)';
  6927.             sTemp=L_pbcenterlinetrap_TEXT;
  6928.             break;
  6929.         case 'pbchoke':
  6930.             L_pbchoke_TEXT='(choke: A small overlap that decreases the knockout of the lower of two differently colored, abutting objects.)';
  6931.             sTemp=L_pbchoke_TEXT;
  6932.             break;
  6933.         case 'PbCmyk':
  6934.             L_PbCmyk_TEXT='(CMYK: A color model for commercial printing that produces a wide range of colors by mixing varying percentages of cyan, magenta, yellow, and black inks.)';
  6935.             sTemp=L_PbCmyk_TEXT;
  6936.             break;
  6937.         case 'PbColorModel':
  6938.             L_PbColorModel_TEXT='(color model: a way of defining color both for onscreen display and print. Colors can be described by using several different color models: HSV (hue, saturation, and value); CMY (cyan, magenta, and yellow); and RGB (red, green, and blue).)';
  6939.             sTemp=L_PbColorModel_TEXT;
  6940.             break;
  6941.         case 'pbColorpalette':
  6942.             L_pbColorpalette_TEXT='(color palette: A collection of colors that are available when you want to apply color to a fill, line, or text. The default Publisher color palette contains 40 colors, but will change as you add colors, apply color schemes, or change your color setup.)';
  6943.             sTemp=L_pbColorpalette_TEXT;
  6944.             break;
  6945.         case 'pbColorscheme':
  6946.             L_pbColorscheme_TEXT='(color scheme: A predefined set of harmonized colors that you can apply to text and objects. Text and objects with an applied scheme color will change automatically when you switch to a new color scheme or modify the current color scheme.)';
  6947.             sTemp=L_pbColorscheme_TEXT;
  6948.             break;
  6949.         case 'pbcolorseparation':
  6950.             L_pbcolorseparation_TEXT='(color separation: The process of separating the colors in a color image so that they are printed on separate press plates for each process ink (cyan, magenta, yellow, and black) and for any spot color inks used by a commercial printer.)';
  6951.             sTemp=L_pbcolorseparation_TEXT;
  6952.             break;
  6953.         case 'pbcolumnguides':
  6954.             L_pbcolumnguides_TEXT='(column guides: Vertical guides that are used to divide a publication page into two or more columns.)';
  6955.             sTemp=L_pbcolumnguides_TEXT;
  6956.             break;
  6957.         case 'pbcontinuednotice':
  6958.             L_pbcontinuednotice_TEXT='(Continued notice: A note at the beginning or end of a text box indicating that the text is continued from or continues on a different page.)';
  6959.             sTemp=L_pbcontinuednotice_TEXT;
  6960.             break;
  6961.         case 'pbCopyfitting':
  6962.             L_pbCopyfitting_TEXT='(copyfitting: The resizing of text to fit into an allotted amount of space.)';
  6963.             sTemp=L_pbCopyfitting_TEXT;
  6964.             break;
  6965.         case 'PbCyans':
  6966.             L_PbCyans_TEXT='(cyan: A color that is essential to the CMY color model and the CMYK color-mxing method. The CMY starts with white and subtracts percentages of cyan, magenta, and yellow to create different colors.)';
  6967.             sTemp=L_PbCyans_TEXT;
  6968.             break;
  6969.         case 'pbdatasource':
  6970.             L_pbdatasource_TEXT='(default text: Sample text for Web page visitors. This text will appear in the Web form control, assisting visitors in entering information.)';
  6971.             sTemp=L_pbdatasource_TEXT;
  6972.             break;
  6973.         case 'PbDataSources':
  6974.             L_PbDataSources_TEXT='(data source: A file that contains information that can be merged into a publication. For example, a list of names and addresses, or paths to pictures you want to use in a mail or catalog merge. You must connect to a data source to perform a merge.)';
  6975.             sTemp=L_PbDataSources_TEXT;
  6976.             break;
  6977.         case 'PbdefXYZAxes':
  6978.             L_PbdefXYZAxes_TEXT='(x, y, and z axes: The three mutually perpendicular lines that are used to locate a point in a Cartesian coordinate system. In a Microsoft Office drawing layer, x is horizontal, y is vertical, and z is perpendicular to the document plane.)';
  6979.             sTemp=L_PbdefXYZAxes_TEXT;
  6980.             break;
  6981.         case 'pbdescender':
  6982.             L_pbdescender_TEXT='(descender: The part of a lowercase letter in Latin text that extends below the baseline; for example, the lower part of the letters g, j, p, q, and y.)';
  6983.             sTemp=L_pbdescender_TEXT;
  6984.             break;
  6985.         case 'pbdescenderline':
  6986.             L_pbdescenderline_TEXT='(descender line: the invisible line that marks the extent below the baseline of the bottom part of the lowercase Latin letters g, j, p, q, and y.)';
  6987.             sTemp=L_pbdescenderline_TEXT;
  6988.             break;
  6989.         case 'pbDesignelement':
  6990.             L_pbDesignelement_TEXT='(design element: Any object in your publication that contributes to the visual impact of the design. The Design Gallery contains many premade elements.)';
  6991.             sTemp=L_pbDesignelement_TEXT;
  6992.             break;
  6993.         case 'PbDrawingObject':
  6994.             L_PbDrawingObject_TEXT='(drawing object: any graphic that you can draw or insert, and change and enhance. Drawing objects include Custom Shapes, curves, lines, and WordArt drawing objects.)';
  6995.             sTemp=L_PbDrawingObject_TEXT;
  6996.             break;
  6997.         case 'pbElectronicform':
  6998.             L_pbElectronicform_TEXT='(electronic form: An interactive form on a Web site that you fill out and send back to the owner of the Web site or a Web server.)';
  6999.             sTemp=L_pbElectronicform_TEXT;
  7000.             break;
  7001.         case 'pbembeddedpicture':
  7002.             L_pbembeddedpicture_TEXT='(embedded picture: A picture that is stored within a publication rather than being linked to a source file outside of the publication.)';
  7003.             sTemp=L_pbembeddedpicture_TEXT;
  7004.             break;
  7005.         case 'pbEmdash':
  7006.             L_pbEmdash_TEXT='(em dash: A punctuation mark (├óΓé¼ΓÇ¥), based on the width of an uppercase M, used primarily to set off sentence elements.)';
  7007.             sTemp=L_pbEmdash_TEXT;
  7008.             break;
  7009.         case 'pbencapsulatedpostscripteps':
  7010.             L_pbencapsulatedpostscripteps_TEXT='(EPS: A graphic file format that is created using the PostScript page description language. EPS graphics are meant to be printed to PostScript compatible printers.)';
  7011.             sTemp=L_pbencapsulatedpostscripteps_TEXT;
  7012.             break;
  7013.         case 'pbEndash':
  7014.             L_pbEndash_TEXT='(en dash: A punctuation mark (├óΓé¼ΓÇ£), based on the width of an uppercase N, used primarily as a connecting element, especially with numbers.)';
  7015.             sTemp=L_pbEndash_TEXT;
  7016.             break;
  7017.         case 'pbExtension':
  7018.             L_pbExtension_TEXT='(extension: The last characters following a period in a file name. These characters usually indicate the kind of information that is stored in the file.)';
  7019.             sTemp=L_pbExtension_TEXT;
  7020.             break;
  7021.         case 'PbFieldCode':
  7022.             L_PbFieldCode_TEXT='(field code: a placeholder text in your publication where information from a data source (such as a name or address) is inserted. You can format, copy, move, or delete a field code.)';
  7023.             sTemp=L_PbFieldCode_TEXT;
  7024.             break;
  7025.         case 'PbFontEmbedding':
  7026.             L_PbFontEmbedding_TEXT='(font embedding: To insert a font into the publication. Once the font is embedded, the information becomes part of the publication.)';
  7027.             sTemp=L_PbFontEmbedding_TEXT;
  7028.             break;
  7029.         case 'pbFontmanager':
  7030.             L_pbFontmanager_TEXT='(font manager: A software program, also referred to as \"type manager,\" that helps you increase or decrease the sets of available fonts.)';
  7031.             sTemp=L_pbFontmanager_TEXT;
  7032.             break;
  7033.         case 'pbfontmetrics':
  7034.             L_pbfontmetrics_TEXT='(font metrics: the values that define the physical space occupied by a computer font character, on screen or paper, and its relation to other characters in a line of text.)';
  7035.             sTemp=L_pbfontmetrics_TEXT;
  7036.             break;
  7037.         case 'pbFontsubsetting':
  7038.             L_pbFontsubsetting_TEXT='(font subsetting: Embedding a limited number of characters specific to one font, reducing file size.)';
  7039.             sTemp=L_pbFontsubsetting_TEXT;
  7040.             break;
  7041.         case 'pbFontsubstitution':
  7042.             L_pbFontsubstitution_TEXT='(font substitution: A substitution that occurs when Windows or your printer uses a font similar to the one you used in your publication to display or print your publication.)';
  7043.             sTemp=L_pbFontsubstitution_TEXT;
  7044.             break;
  7045.         case 'pbFormcontrol':
  7046.             L_pbFormcontrol_TEXT='(form control: On a Web site, an individual box or button with which you enter information on an electronic form.)';
  7047.             sTemp=L_pbFormcontrol_TEXT;
  7048.             break;
  7049.         case 'pbFormdatafile':
  7050.             L_pbFormdatafile_TEXT='(form data file: The file in which information gathered from electronic forms is stored.)';
  7051.             sTemp=L_pbFormdatafile_TEXT;
  7052.             break;
  7053.         case 'pbFrame':
  7054.             L_pbFrame_TEXT='(frame: A space, shown onscreen as a box, that contains a particular element of your publication. Types of frames include text boxes, table frames, and picture frames.)';
  7055.             sTemp=L_pbFrame_TEXT;
  7056.             break;
  7057.         case 'pbgamut':
  7058.             L_pbgamut_TEXT='(gamut: The range of possible colors that can be produced by a particular color model, such as RGB or CMYK.)';
  7059.             sTemp=L_pbgamut_TEXT;
  7060.             break;
  7061.         case 'pbGraphic':
  7062.             L_pbGraphic_TEXT='(graphic: A nontext design element, such as a photograph, drawing, or shape.)';
  7063.             sTemp=L_pbGraphic_TEXT;
  7064.             break;
  7065.         case 'pbGraphicregion':
  7066.             L_pbGraphicregion_TEXT='(graphic region: The area on a Web page where graphics overlap.)';
  7067.             sTemp=L_pbGraphicregion_TEXT;
  7068.             break;
  7069.         case 'pbGraphicsfilter':
  7070.             L_pbGraphicsfilter_TEXT='(graphics filter: A program that transforms a picture stored in one file format to another format so that it can be displayed in a specific graphics program.)';
  7071.             sTemp=L_pbGraphicsfilter_TEXT;
  7072.             break;
  7073.         case 'pbGuides':
  7074.             L_pbGuides_TEXT='(guides: Nonprinting lines that are used to position objects precisely. Types of guides include margin guides, column guides, row guides, and ruler guides.)';
  7075.             sTemp=L_pbGuides_TEXT;
  7076.             break;
  7077.         case 'pbGutter':
  7078.             L_pbGutter_TEXT='(gutter: The blank area between two or more columns of text or between two facing pages in a publication.)';
  7079.             sTemp=L_pbGutter_TEXT;
  7080.             break;
  7081.         case 'pbhalftone':
  7082.             L_pbhalftone_TEXT='(halftone: a printed reproduction, typically of a photographic image, that uses a screen of dots whose size varies depending on the density of the image.)';
  7083.             sTemp=L_pbhalftone_TEXT;
  7084.             break;
  7085.         case 'pbHandle':
  7086.             L_pbHandle_TEXT='(handle: One of several small shapes displayed around an object when the object is selected. You can move or reshape an object by clicking on a handle and dragging.)';
  7087.             sTemp=L_pbHandle_TEXT;
  7088.             break;
  7089.         case 'pbHangingquotation':
  7090.             L_pbHangingquotation_TEXT='(hanging quotation: Giant quotation marks used to frame a pull quote.)';
  7091.             sTemp=L_pbHangingquotation_TEXT;
  7092.             break;
  7093.         case 'pbhsl':
  7094.             L_pbhsl_TEXT='(HSL: A color model that defines a color by three values: Hue, the color itself; Saturation, the purity of the color; and Luminance, the amount of light that is either reflected or absorbed by the color.)';
  7095.             sTemp=L_pbhsl_TEXT;
  7096.             break;
  7097.         case 'pbHTMLcodefragment':
  7098.             L_pbHTMLcodefragment_TEXT='(HTML code fragment: HTML code that you add to your Web page to create features such as a script, a counter, or a scrolling marquee.)';
  7099.             sTemp=L_pbHTMLcodefragment_TEXT;
  7100.             break;
  7101.         case 'pbImageColorMatching':
  7102.             L_pbImageColorMatching_TEXT='(ICM:  A program that runs on printers and computers to identify colors that most closely match on both systems. ICM give you a better idea of what the final colors in your publication will look like.)';
  7103.             sTemp=L_pbImageColorMatching_TEXT;
  7104.             break;
  7105.         case 'pbimagesetter':
  7106.             L_pbimagesetter_TEXT='(imagesetter: A high resolution output device that prints to paper or film, or directly to a press plate. Publications that will be commercially printed are usually output from an imagesetter as the first step toward going to press.)';
  7107.             sTemp=L_pbimagesetter_TEXT;
  7108.             break;
  7109.         case 'pbIndent':
  7110.             L_pbIndent_TEXT='(indent: Blank space added to the left of text in addition to what the left margin provide.)';
  7111.             sTemp=L_pbIndent_TEXT;
  7112.             break;
  7113.         case 'pbinlineobject':
  7114.             L_pbinlineobject_TEXT='(inline object: A picture or other object placed within a line of text that retains its place next to adjacent text when text is added or deleted. An inline object can move both horizontally and vertically with adjacent text, or just vertically.)';
  7115.             sTemp=L_pbinlineobject_TEXT;
  7116.             break;
  7117.         case 'pbInsertionpoint':
  7118.             L_pbInsertionpoint_TEXT='(insertion point: The place in your publication where the cursor appears after a mouse click.)';
  7119.             sTemp=L_pbInsertionpoint_TEXT;
  7120.             break;
  7121.         case 'pbKnockout':
  7122.             L_pbKnockout_TEXT='(knockout: The process of eliminating background color behind an object in the foreground.)';
  7123.             sTemp=L_pbKnockout_TEXT;
  7124.             break;
  7125.         case 'pbLayout':
  7126.             L_pbLayout_TEXT='(layout: The overall arrangement of text, graphics, and other objects on the pages of your publication.)';
  7127.             sTemp=L_pbLayout_TEXT;
  7128.             break;
  7129.         case 'pbLeading':
  7130.             L_pbLeading_TEXT='(leading: The space between lines of text measured from baseline to baseline.)';
  7131.             sTemp=L_pbLeading_TEXT;
  7132.             break;
  7133.         case 'pbLinebreak':
  7134.             L_pbLinebreak_TEXT='(line break: A nonprinting character that signifies the end of a line of text.)';
  7135.             sTemp=L_pbLinebreak_TEXT;
  7136.             break;
  7137.         case 'pblineperinchlpi':
  7138.             L_pblineperinchlpi_TEXT='(LPI: The measurement of the line screen frequency of a halftone screen that is used when printing a bitmap picture. For commercial printing, using higher lines per inch typically results in a more finely detailed picture.)';
  7139.             sTemp=L_pblineperinchlpi_TEXT;
  7140.             break;
  7141.         case 'pblinescreenangle':
  7142.             L_pblinescreenangle_TEXT='(line screen angle: The angle of the lines of dots for each of the halftone screens that are used in process color printing. The standard angles are 15 degrees for cyan, 75 degrees for magenta, 0 degrees for yellow, and 45 degrees for black.)';
  7143.             sTemp=L_pblinescreenangle_TEXT;
  7144.             break;
  7145.         case 'pblinescreenfrequency':
  7146.             L_pblinescreenfrequency_TEXT='(line screen frequency: The fineness or coarseness of a halftone screen represented by lines per inch (LPI). The higher the LPI, the finer the dots used in a halftone screen. A finer halftone screen shows greater picture detail.)';
  7147.             sTemp=L_pblinescreenfrequency_TEXT;
  7148.             break;
  7149.         case 'pblinespacing':
  7150.             L_pblinespacing_TEXT='(line spacing: The amount of space from the bottom of one line of text to the bottom of the next line. Also called leading.)';
  7151.             sTemp=L_pblinespacing_TEXT;
  7152.             break;
  7153.         case 'pbLink':
  7154.             L_pbLink_TEXT='(link: Used to insert a copy of information created in one program into a Word document while maintaining a connection between the two files. When the information changes in the source file, the changes are reflected in the destination document.)';
  7155.             sTemp=L_pbLink_TEXT;
  7156.             break;
  7157.         case 'pblinkedpicture':
  7158.             L_pblinkedpicture_TEXT='(linked picture: A picture that links to a high-resolution image file that is stored outside of the publication file. If the linked picture is changed in an image-editing program, you can update the linked picture in the publication file.)';
  7159.             sTemp=L_pblinkedpicture_TEXT;
  7160.             break;
  7161.         case 'pbMailmerge':
  7162.             L_pbMailmerge_TEXT='(mail merge: The process of combining information from a data source with a publication to print a batch of individually customized publications.)';
  7163.             sTemp=L_pbMailmerge_TEXT;
  7164.             break;
  7165.         case 'pbmappeddatafield':
  7166.             L_pbmappeddatafield_TEXT='(mapped data field: Field that represents commonly used information, such as \"First Name.\" If a data source contains a \"First Name\" field or a variation, such as \"FName,\" the data source field automatically maps to the corresponding mapped data field.)';
  7167.             sTemp=L_pbmappeddatafield_TEXT;
  7168.             break;
  7169.         case 'pbmarginguides':
  7170.             L_pbmarginguides_TEXT='(margin guides: Guides on the top, bottom, left, and right sides of a page that are used to define its margins. Most contents of a page are within the margin guides.)';
  7171.             sTemp=L_pbmarginguides_TEXT;
  7172.             break;
  7173.         case 'pbmasterpage':
  7174.             L_pbmasterpage_TEXT='(master page: A background page that can be applied to one or more pages of a publication. Master pages contain elements, such as headers, footers, margin guides, and column guides, that can be applied to multiple pages.)';
  7175.             sTemp=L_pbmasterpage_TEXT;
  7176.             break;
  7177.         case 'pbmergefield':
  7178.             L_pbmergefield_TEXT='(merge field: A placeholder for text or pictures that you insert into your publication. Information from a data source (such as a name, address, or image) is inserted in each merge field. You can format, copy, move, or delete a merge field.)';
  7179.             sTemp=L_pbmergefield_TEXT;
  7180.             break;
  7181.         case 'pbMirroredpagelayout':
  7182.             L_pbMirroredpagelayout_TEXT='(mirrored-page layout: A layout in which left and right facing pages are mirror images of each other.)';
  7183.             sTemp=L_pbMirroredpagelayout_TEXT;
  7184.             break;
  7185.         case 'pbmisregistration':
  7186.             L_pbmisregistration_TEXT='(misregistration: A gap caused when objects from different press plates do not line up correctly when printed. Misregistration is caused by shifting and stretching of the paper or the press plates.)';
  7187.             sTemp=L_pbmisregistration_TEXT;
  7188.             break;
  7189.         case 'pbMockup':
  7190.             L_pbMockup_TEXT='(mock-up: A sketch or representation that shows the layout of the publication that you plan to create.)';
  7191.             sTemp=L_pbMockup_TEXT;
  7192.             break;
  7193.         case 'pbNonbreakinghyphen':
  7194.             L_pbNonbreakinghyphen_TEXT='(nonbreaking hyphen: A type of hyphen that keeps the hyphenated words on the same line.)';
  7195.             sTemp=L_pbNonbreakinghyphen_TEXT;
  7196.             break;
  7197.         case 'pbNudge':
  7198.             L_pbNudge_TEXT='(nudge: To move an object one pixel at a time.)';
  7199.             sTemp=L_pbNudge_TEXT;
  7200.             break;
  7201.         case 'pbOpacity':
  7202.             L_pbOpacity_TEXT='(opacity: The quality that defines how much light passes through an object\'s pixels. If an object is 100 percent opaque, no light passes through it.)';
  7203.             sTemp=L_pbOpacity_TEXT;
  7204.             break;
  7205.         case 'pbOrientation':
  7206.             L_pbOrientation_TEXT='(orientation: The direction a publication will be printed on a sheet of paper. You can choose either portrait, which is the taller-than-wide orientation, or landscape, which is the wider-than-tall orientation .)';
  7207.             sTemp=L_pbOrientation_TEXT;
  7208.             break;
  7209.         case 'pboutcrop':
  7210.             L_pboutcrop_TEXT='(outcrop: To apply cropping to a picture by using negative cropping values. Instead of reducing the size of the picture, outcropping extends its frame beyond its edges.)';
  7211.             sTemp=L_pboutcrop_TEXT;
  7212.             break;
  7213.         case 'pboverflow':
  7214.             L_pboverflow_TEXT='(overflow: Text that does not fit within a text box. The text is hidden until it can be flowed into a new text box, or until the text box it overflows is resized to include it.)';
  7215.             sTemp=L_pboverflow_TEXT;
  7216.             break;
  7217.         case 'PbOverlap':
  7218.             L_PbOverlap_TEXT='(overlaps: Marks that indicate where to line up adjacent pages in a large publication, such as a poster or banner.)';
  7219.             sTemp=L_PbOverlap_TEXT;
  7220.             break;
  7221.         case 'pbOverprint':
  7222.             L_pbOverprint_TEXT='(overprint: To print an element of one color over one of another color without removing, or knocking out, the material underneath.)';
  7223.             sTemp=L_pbOverprint_TEXT;
  7224.             break;
  7225.         case 'PbPacks':
  7226.             L_PbPacks_TEXT='(pack: Package your publication files by using the Pack and Go Wizard.)';
  7227.             sTemp=L_PbPacks_TEXT;
  7228.             break;
  7229.         case 'pbpagesorter':
  7230.             L_pbpagesorter_TEXT='(page sorter: One or more paged-shaped controls, located in the lower left corner of the Publisher window, that represent each page of the publication and can be used to go to, rearrange, or work with publication pages.)';
  7231.             sTemp=L_pbpagesorter_TEXT;
  7232.             break;
  7233.         case 'pbpan':
  7234.             L_pbpan_TEXT='(pan: To use the mouse to move the current page within the workspace or to scroll quickly in any direction for a better view.)';
  7235.             sTemp=L_pbpan_TEXT;
  7236.             break;
  7237.         case 'pbPantone':
  7238.             L_pbPantone_TEXT='(Pantone: A widely-used color-matching system that defines hundreds of spot-color inks or process colors made up of CMYK inks.)';
  7239.             sTemp=L_pbPantone_TEXT;
  7240.             break;
  7241.         case 'pbParagraphmark':
  7242.             L_pbParagraphmark_TEXT='(paragraph mark: A nonprinting character that indicates the end of a paragraph.)';
  7243.             sTemp=L_pbParagraphmark_TEXT;
  7244.             break;
  7245.         case 'pbPattern':
  7246.             L_pbPattern_TEXT='(pattern: An effect created by simple, repeating designs such as vertical or horizontal lines.)';
  7247.             sTemp=L_pbPattern_TEXT;
  7248.             break;
  7249.         case 'pbpdf':
  7250.             L_pbpdf_TEXT='(PDF: Portable Document Format. A PostScript-based electronic file type. You can save most documents as PDF files and share them with other users on any computer.)';
  7251.             sTemp=L_pbpdf_TEXT;
  7252.             break;
  7253.         case 'pbPersonalinformation':
  7254.             L_pbPersonalinformation_TEXT='(personal information: Information about you or your organization, such as name, address, and organization  name that Publisher stores and reuses in subsequent publications you create.)';
  7255.             sTemp=L_pbPersonalinformation_TEXT;
  7256.             break;
  7257.         case 'pbPica':
  7258.             L_pbPica_TEXT='(pica: A typographical unit of measure that is equal to one sixth of an inch. A pica is divided into 12 points.)';
  7259.             sTemp=L_pbPica_TEXT;
  7260.             break;
  7261.         case 'pbPicture':
  7262.             L_pbPicture_TEXT='(picture: A bitmap or draw-type graphic that is brought into Publisher. Clip art is one type of picture.)';
  7263.             sTemp=L_pbPicture_TEXT;
  7264.             break;
  7265.         case 'pbpixel':
  7266.             L_pbpixel_TEXT='(pixel: The smallest element of a digital picture. Pixels are solid squares of color that vary in size depending on the resolution of the picture. Higher resolution pictures have smaller pixels and can show finer picture detail.)';
  7267.             sTemp=L_pbpixel_TEXT;
  7268.             break;
  7269.         case 'pbPlaceholdertext':
  7270.             L_pbPlaceholdertext_TEXT='(placeholder text: Text that appears in a publication that was created using one of Publisher\'s wizards, such as the Brochure Wizard. Placeholder text is replaced by your text.)';
  7271.             sTemp=L_pbPlaceholdertext_TEXT;
  7272.             break;
  7273.         case 'pbpoint':
  7274.             L_pbpoint_TEXT='(point: A typographical unit of measure that is equal to one seventy-second of an inch. Twelve points equals one pica.)';
  7275.             sTemp=L_pbpoint_TEXT;
  7276.             break;
  7277.         case 'pbpostscript':
  7278.             L_pbpostscript_TEXT='(PostScript: A page description language used by printers and imagesetters.)';
  7279.             sTemp=L_pbpostscript_TEXT;
  7280.             break;
  7281.         case 'PbPostscriptFont':
  7282.             L_PbPostscriptFont_TEXT='(PostScript font: A scaleable font that displays and prints smoothly at any point size. PostScript fonts are based on the PostScript page description language. Also called a Type 1 font.)';
  7283.             sTemp=L_PbPostscriptFont_TEXT;
  7284.             break;
  7285.         case 'pbPrinterdriver':
  7286.             L_pbPrinterdriver_TEXT='(printer driver: The device that communicates between your software program and your printer. The printer driver tells Publisher what the printer can do, and also tells the printer how to print the publication.)';
  7287.             sTemp=L_pbPrinterdriver_TEXT;
  7288.             break;
  7289.         case 'pbPrintersmarks':
  7290.             L_pbPrintersmarks_TEXT='(printer\'s marks: Marks printed outside the printable area on each page of your publication to help you or your commercial printing service trim, align, and control color in your publication.)';
  7291.             sTemp=L_pbPrintersmarks_TEXT;
  7292.             break;
  7293.         case 'pbPrintspooler':
  7294.             L_pbPrintspooler_TEXT='(print spooler: Software that stores print files in memory for a short time before sending them to the printer, so you can continue to work.)';
  7295.             sTemp=L_pbPrintspooler_TEXT;
  7296.             break;
  7297.         case 'pbprocesscolors':
  7298.             L_pbprocesscolors_TEXT='(process colors: The four transparent inks (cyan, magenta, yellow, and black) that are used in commercial printing to produce color photographic images and a wide range of solid colors.)';
  7299.             sTemp=L_pbprocesscolors_TEXT;
  7300.             break;
  7301.         case 'pbPullquote':
  7302.             L_pbPullquote_TEXT='(pull quote: An excerpt from the body of a story used to emphasize an idea, draw attention, or generate interest.)';
  7303.             sTemp=L_pbPullquote_TEXT;
  7304.             break;
  7305.         case 'pbPuretext':
  7306.             L_pbPuretext_TEXT='(pure text: Simply formatted text without borders, graphics, or cells. Important for Web publishing.)';
  7307.             sTemp=L_pbPuretext_TEXT;
  7308.             break;
  7309.         case 'pbrasterimageprocessorrip':
  7310.             L_pbrasterimageprocessorrip_TEXT='(RIP: The processor in an imagesetter or desktop printer that interprets the commands sent by a printer driver and converts them to a raster or bitmap grid to mark the paper or film.)';
  7311.             sTemp=L_pbrasterimageprocessorrip_TEXT;
  7312.             break;
  7313.         case 'PbResolutions':
  7314.             L_PbResolutions_TEXT='(resolution: The sharpness and detail in an image that is produced either on a computer screen or by a printer.)';
  7315.             sTemp=L_PbResolutions_TEXT;
  7316.             break;
  7317.         case 'pbrichblack':
  7318.             L_pbrichblack_TEXT='(rich black: A more saturated black color created by using 100% process black and some percentage of one or more of cyan, magenta, or yellow.)';
  7319.             sTemp=L_pbrichblack_TEXT;
  7320.             break;
  7321.         case 'pbrowguides':
  7322.             L_pbrowguides_TEXT='(row guides: Horizontal guides that are used to divide a page into two or more sections to help structure the layout of the page.)';
  7323.             sTemp=L_pbrowguides_TEXT;
  7324.             break;
  7325.         case 'pbrulerguide':
  7326.             L_pbrulerguide_TEXT='(ruler guide: A non-printing horizontal or vertical guide that you can align to any point on a ruler.)';
  7327.             sTemp=L_pbrulerguide_TEXT;
  7328.             break;
  7329.         case 'pbrulermark':
  7330.             L_pbrulermark_TEXT='(ruler mark: A mark on the vertical or horizontal ruler that shows a unit or subunit of the measurement unit that is used for the publication. )';
  7331.             sTemp=L_pbrulermark_TEXT;
  7332.             break;
  7333.         case 'pbrulerorigin':
  7334.             L_pbrulerorigin_TEXT='(ruler origin: the beginning or zero point of a horizontal or vertical ruler. By default the ruler origin is in the upper left corner of the publication page, but can be moved to any place on the page or scratch area.)';
  7335.             sTemp=L_pbrulerorigin_TEXT;
  7336.             break;
  7337.         case 'pbSchemecolor':
  7338.             L_pbSchemecolor_TEXT='(scheme color: One of the colors defined in a set of chosen colors. If you fill an object with a scheme color, the object\'s color changes whenever you choose another color scheme for that publication.)';
  7339.             sTemp=L_pbSchemecolor_TEXT;
  7340.             break;
  7341.         case 'pbscratcharea':
  7342.             L_pbscratcharea_TEXT='(scratch area: The area that surrounds a page in Publisher that is used to hold objects that are not currently on a page. Objects in the scratch area will not print and will not export as part of a Web page.)';
  7343.             sTemp=L_pbscratcharea_TEXT;
  7344.             break;
  7345.         case 'pbScreenfont':
  7346.             L_pbScreenfont_TEXT='(screen font: A font designed for displaying text on a computer monitor. A screen font may or may not print as it appears, depending on the printer fonts you have installed.)';
  7347.             sTemp=L_pbScreenfont_TEXT;
  7348.             break;
  7349.         case 'pbSeparator':
  7350.             L_pbSeparator_TEXT='(separator: A separator is a character, such as a punctuation mark, used in a list to separate the numbers or letters identifying the items from the text of the list.)';
  7351.             sTemp=L_pbSeparator_TEXT;
  7352.             break;
  7353.         case 'pbServicebureau':
  7354.             L_pbServicebureau_TEXT='(service bureau: Prepares a publication to be printed on a commercial printing press.)';
  7355.             sTemp=L_pbServicebureau_TEXT;
  7356.             break;
  7357.         case 'PbShade':
  7358.             L_PbShade_TEXT='(shade: A color that is mixed with black. A 10-percent shade is one part of the original color and nine parts black.)';
  7359.             sTemp=L_PbShade_TEXT;
  7360.             break;
  7361.         case 'pbShadow':
  7362.             L_pbShadow_TEXT='(shadow: A style applied to an object in which a gray outline is applied usually to the lower right portion. The effect gives the object something of a three-dimensional appearance.)';
  7363.             sTemp=L_pbShadow_TEXT;
  7364.             break;
  7365.         case 'PbSheets':
  7366.             L_PbSheets_TEXT='(sheet: The paper that a publication is printed on. In the commercial print trade, sheet size refers to the paper that is used for printing, whereas page size refers to the size of the finished publication.)';
  7367.             sTemp=L_PbSheets_TEXT;
  7368.             break;
  7369.         case 'pbSpecialcharacter':
  7370.             L_pbSpecialcharacter_TEXT='(special character: A nonprinting character, such as a tab or a paragraph mark.)';
  7371.             sTemp=L_pbSpecialcharacter_TEXT;
  7372.             break;
  7373.         case 'pbSpecialpaper':
  7374.             L_pbSpecialpaper_TEXT='(special paper: Paper that has colored, preprinted patterns or borders on it. You can use these papers to create a colorful and stylish look without a color printer or copier.)';
  7375.             sTemp=L_pbSpecialpaper_TEXT;
  7376.             break;
  7377.         case 'PbSpotColor':
  7378.             L_PbSpotColor_TEXT='(spot color: Premixed color matched to a standard color guide, such as PANTONE.)';
  7379.             sTemp=L_PbSpotColor_TEXT;
  7380.             break;
  7381.         case 'pbspread':
  7382.             L_pbspread_TEXT='(spread: A small overlap that extends the shape of the upper of two differently colored, abutting objects. A spread extends beyond the area that it knocks out.)';
  7383.             sTemp=L_pbspread_TEXT;
  7384.             break;
  7385.         case 'pbSwatchbook':
  7386.             L_pbSwatchbook_TEXT='(swatch book: A selection of printed colors to choose from when preparing publications for commercial printing.)';
  7387.             sTemp=L_pbSwatchbook_TEXT;
  7388.             break;
  7389.         case 'pbSynchronization':
  7390.             L_pbSynchronization_TEXT='(synchronization: When you change the formatting of certain objects ├óΓé¼ΓÇ¥ such as smart objects or repeated design elements ├óΓé¼ΓÇ¥ or when you change information in personal information components, Publisher makes the change to similar objects.)';
  7391.             sTemp=L_pbSynchronization_TEXT;
  7392.             break;
  7393.         case 'pbTagline':
  7394.             L_pbTagline_TEXT='(tag line: A brief, memorable statement that summarizes the purpose of an organization or emphasizes an important aspect of a product or service.)';
  7395.             sTemp=L_pbTagline_TEXT;
  7396.             break;
  7397.         case 'pbTentfoldcard':
  7398.             L_pbTentfoldcard_TEXT='(tent-fold card: A top-fold card with four pages. Page one becomes the front cover, pages two and three are the inside pages, and page four is the back of the card.)';
  7399.             sTemp=L_pbTentfoldcard_TEXT;
  7400.             break;
  7401.         case 'pbTextconverter':
  7402.             L_pbTextconverter_TEXT='(text converter: A file that converts word-processing and spreadsheet documents created in other programs into files that you can import into Publisher.)';
  7403.             sTemp=L_pbTextconverter_TEXT;
  7404.             break;
  7405.         case 'pbtilenoun':
  7406.             L_pbtilenoun_TEXT='(tile: One of a number of separately printed parts of an oversized publication, such as a banner or poster, that cannot be printed as a single sheet. Separate tiles can be assembled to recreate the whole publication.)';
  7407.             sTemp=L_pbtilenoun_TEXT;
  7408.             break;
  7409.         case 'pbtileverb':
  7410.             L_pbtileverb_TEXT='(tile: To print a document in overlapping pieces.)';
  7411.             sTemp=L_pbtileverb_TEXT;
  7412.             break;
  7413.         case 'pbTrap':
  7414.             L_pbTrap_TEXT='(trap: To create small overlaps where two differently colored objects abut on a printed page.)';
  7415.             sTemp=L_pbTrap_TEXT;
  7416.             break;
  7417.         case 'PbTruetypeFonts':
  7418.             L_PbTruetypeFonts_TEXT='(TrueType font: A scaleable font that displays and prints smoothly at any point size. TrueType fonts are directly supported by the Windows operating system and can be embedded in publications.)';
  7419.             sTemp=L_PbTruetypeFonts_TEXT;
  7420.             break;
  7421.         case 'pbxheight':
  7422.             L_pbxheight_TEXT='(x-height: The typical height of a lowercase Latin letter, such as the letters a, c, e, m, n, o, r s, u, v, w, x, and z.)';
  7423.             sTemp=L_pbxheight_TEXT;
  7424.             break;
  7425.         case 'pbxline':
  7426.             L_pbxline_TEXT='(x line: The invisible line that marks the typical height of a lowercase Latin letter, such as the height of the letters a, c, e, m, n, o, r s, u, v, w, x, and z.)';
  7427.             sTemp=L_pbxline_TEXT;
  7428.             break;
  7429.         case 'pbZeropoint':
  7430.             L_pbZeropoint_TEXT='(zero point: The position of \"0\" on the horizontal and vertical ruler.)';
  7431.             sTemp=L_pbZeropoint_TEXT;
  7432.             break;
  7433.  
  7434.         // PhotoDraw
  7435.  
  7436.         case 'IDH_pddef256Colors':
  7437.             L_IDH_pddef256Colors_TEXT='(8-bit color: A display setting that holds up to 256 specific color entries. Any color palette attached to a picture is by definition an 8-bit palette.)';
  7438.             sTemp=L_IDH_pddef256Colors_TEXT;
  7439.             break;
  7440.         case 'IDH_pddef3DLighting':
  7441.             L_IDH_pddef3DLighting_TEXT='(3-D lighting: In Microsoft PhotoDraw, the indirect and direct sources of light you can apply to 3-D objects. To modify 3-D lighting, you can apply a preset effect, change the lighting colors, or tilt lights.)';
  7442.             sTemp=L_IDH_pddef3DLighting_TEXT;
  7443.             break;
  7444.         case 'IDH_pddefActiveColor':
  7445.             L_IDH_pddefActiveColor_TEXT='(active color: The color displayed in the central square of the color box that appears in most workpanes. The active color is used when you create a new object and when you add fills and patterns to a selected object.)';
  7446.             sTemp=L_IDH_pddefActiveColor_TEXT;
  7447.             break;
  7448.         case 'IDH_pddefActiveColorPalette':
  7449.             L_IDH_pddefActiveColorPalette_TEXT='(active color palette: A subset of up to 256 of the colors in the True Color spectrum.)';
  7450.             sTemp=L_IDH_pddefActiveColorPalette_TEXT;
  7451.             break;
  7452.         case 'IDH_pddefActivePicture':
  7453.             L_IDH_pddefActivePicture_TEXT='(active picture: The picture that is currently open on the PhotoDraw workspace.)';
  7454.             sTemp=L_IDH_pddefActivePicture_TEXT;
  7455.             break;
  7456.         case 'IDH_pddefBitsPerPixel':
  7457.             L_IDH_pddefBitsPerPixel_TEXT='(bits per pixel: Also known as color depth or bit depth. The term refers to the number of bits (8, 16, 24, or 32) used to store and display the color data for a single pixel. The number of bits per pixel determines the range of color available to an image.)';
  7458.             sTemp=L_IDH_pddefBitsPerPixel_TEXT;
  7459.             break;
  7460.         case 'IDH_pddefBrightness':
  7461.             L_IDH_pddefBrightness_TEXT='(brightness: The relative lightness of a color. An object with 0 percent brightness would be black, while an object with 100 percent brightness would be white. A tint is a color with brightness, or white, added to it.)';
  7462.             sTemp=L_IDH_pddefBrightness_TEXT;
  7463.             break;
  7464.         case 'IDH_pddefbrush_strokes':
  7465.             L_IDH_pddefbrush_strokes_TEXT='(brush strokes: Line styles resembling natural media paint strokes or photorealistic images that you can apply to an object.)';
  7466.             sTemp=L_IDH_pddefbrush_strokes_TEXT;
  7467.             break;
  7468.         case 'IDH_pddefCMYK':
  7469.             L_IDH_pddefCMYK_TEXT='(CMYK: A method for mixing print colors that starts with white, subtracts percentages of cyan, magenta, and yellow, and then adds a black component to reduce the amount of ink used to print a particular color.)';
  7470.             sTemp=L_IDH_pddefCMYK_TEXT;
  7471.             break;
  7472.         case 'IDH_pddefColorBox':
  7473.             L_IDH_pddefColorBox_TEXT='(color box: A set of color choices located in a workpane.)';
  7474.             sTemp=L_IDH_pddefColorBox_TEXT;
  7475.             break;
  7476.         case 'IDH_pddefColorDepth':
  7477.             L_IDH_pddefColorDepth_TEXT='(color depth: The number of color values that can be assigned to a single pixel in an image. Also known as bit depth, color depth can range from I bit (black and white) to 32 bits (over 16.7 million colors).)';
  7478.             sTemp=L_IDH_pddefColorDepth_TEXT;
  7479.             break;
  7480.         case 'IDH_pddefColorList':
  7481.             L_IDH_pddefColorList_TEXT='(color list: A drop-down list of color choices that appears in certain workpanes.)';
  7482.             sTemp=L_IDH_pddefColorList_TEXT;
  7483.             break;
  7484.         case 'IDH_pddefColorMatrix':
  7485.             L_IDH_pddefColorMatrix_TEXT='(color matrix: A map that displays the range of True Colors you can choose in PhotoDraw. True Colors, as people see them, range from violet at the high-frequency end of the visible-light band to red at the low-frequency end.)';
  7486.             sTemp=L_IDH_pddefColorMatrix_TEXT;
  7487.             break;
  7488.         case 'IDH_pddefColorModel':
  7489.             L_IDH_pddefColorModel_TEXT='(color model: A way of defining color both for onscreen and print display. Colors can be described using several different color models: HSV (hue, saturation, and value); CMY (cyan, magenta, yellow); and RGB (red, green, and blue).)';
  7490.             sTemp=L_IDH_pddefColorModel_TEXT;
  7491.             break;
  7492.         case 'IDH_pddefColorPalette':
  7493.             L_IDH_pddefColorPalette_TEXT='(color palette: A set of specific colors that can be saved with a composition or as a separate .pal (palette) file.)';
  7494.             sTemp=L_IDH_pddefColorPalette_TEXT;
  7495.             break;
  7496.         case 'IDH_pddefColorRamp':
  7497.             L_IDH_pddefColorRamp_TEXT='(color ramp: A range of colors in which each color gradually blends into the next one. For example, a blue ramp gradually blends hues of blue from pure black to pure blue.)';
  7498.             sTemp=L_IDH_pddefColorRamp_TEXT;
  7499.             break;
  7500.         case 'IDH_pddefColorSpectrum':
  7501.             L_IDH_pddefColorSpectrum_TEXT='(color spectrum: Colors, as people see them, range from violet at the high-frequency end of the visible-light band to red at the low-frequency end. In PhotoDraw, the True Color spectrum is represented as a color matrix.)';
  7502.             sTemp=L_IDH_pddefColorSpectrum_TEXT;
  7503.             break;
  7504.         case 'IDH_pddefComplementaryColors':
  7505.             L_IDH_pddefComplementaryColors_TEXT='(complementary colors: Colors such as yellow and blue that are opposite each other on the color wheel.)';
  7506.             sTemp=L_IDH_pddefComplementaryColors_TEXT;
  7507.             break;
  7508.         case 'IDH_pddefCompression':
  7509.             L_IDH_pddefCompression_TEXT='(compression: A method for reducing a picture\'s file size that combines pixel information for similar colors and stores the information in a smaller space. Higher compression levels yield smaller file sizes and shorter download times.)';
  7510.             sTemp=L_IDH_pddefCompression_TEXT;
  7511.             break;
  7512.         case 'IDH_pddefCompressionLevel':
  7513.             L_IDH_pddefCompressionLevel_TEXT='(compression level: The amount by which an image\'s file size is reduced. Higher compression levels yield smaller file sizes and shorter download times.)';
  7514.             sTemp=L_IDH_pddefCompressionLevel_TEXT;
  7515.             break;
  7516.         case 'IDH_pddefContrast':
  7517.             L_IDH_pddefContrast_TEXT='(contrast: The difference between the lightest and darkest areas of an image.)';
  7518.             sTemp=L_IDH_pddefContrast_TEXT;
  7519.             break;
  7520.         case 'IDH_pddefCustomPalette':
  7521.             L_IDH_pddefCustomPalette_TEXT='(custom palette: A set of colors on a palette with up to 256 specific color entries.)';
  7522.             sTemp=L_IDH_pddefCustomPalette_TEXT;
  7523.             break;
  7524.         case 'IDH_pddefCutout':
  7525.             L_IDH_pddefCutout_TEXT='(cutout: A copy of a selected area of a PhotoDraw object. You can create cutouts by using the Edge Finder, by tracing the area manually, by dragging out the shape of the area you want to cut out, or by selecting specific colors in an object.)';
  7526.             sTemp=L_IDH_pddefCutout_TEXT;
  7527.             break;
  7528.         case 'IDH_pddefCyan':
  7529.             L_IDH_pddefCyan_TEXT='(Cyan: A color essential to the CMY color model and the CMYK color-mixing method. The CMY model starts with white and subtracts percentages of cyan, magenta, and yellow to create different colors.)';
  7530.             sTemp=L_IDH_pddefCyan_TEXT;
  7531.             break;
  7532.         case 'IDH_pddefDesignerClip':
  7533.             L_IDH_pddefDesignerClip_TEXT='(Designer clip: Clip art exclusive to PhotoDraw. A Designer clip looks especially good when you enhance its lines with artistic or photographic brush strokes or different line styles.)';
  7534.             sTemp=L_IDH_pddefDesignerClip_TEXT;
  7535.             break;
  7536.         case 'IDH_pddefDestination':
  7537.             L_IDH_pddefDestination_TEXT='(destination: The location where you intend to display your finished PhotoDraw picture. The printed page, a Web site, and an online newsletter are all considered destinations.)';
  7538.             sTemp=L_IDH_pddefDestination_TEXT;
  7539.             break;
  7540.         case 'IDH_pddefdigital_photo':
  7541.             L_IDH_pddefdigital_photo_TEXT='(digital photo: An image that has been captured electronically with a digital camera or scanner.)';
  7542.             sTemp=L_IDH_pddefdigital_photo_TEXT;
  7543.             break;
  7544.         case 'IDH_pddefDisplaySetting':
  7545.             L_IDH_pddefDisplaySetting_TEXT='(display setting: The number of colors that your computer display software supports.)';
  7546.             sTemp=L_IDH_pddefDisplaySetting_TEXT;
  7547.             break;
  7548.         case 'IDH_pddefDisplaySystem':
  7549.             L_IDH_pddefDisplaySystem_TEXT='(display system: The combination of monitor, video adapter, and display software.)';
  7550.             sTemp=L_IDH_pddefDisplaySystem_TEXT;
  7551.             break;
  7552.         case 'IDH_pddefDithering':
  7553.             L_IDH_pddefDithering_TEXT='(dithering: A method for approximating colors on a display system or in a file format that does not have the specified color available.)';
  7554.             sTemp=L_IDH_pddefDithering_TEXT;
  7555.             break;
  7556.         case 'IDH_pddefDotsPerInchDPI':
  7557.             L_IDH_pddefDotsPerInchDPI_TEXT='(dots per inch (DPI): The units often used to measure image resolution for print devices and onscreen display resolution.)';
  7558.             sTemp=L_IDH_pddefDotsPerInchDPI_TEXT;
  7559.             break;
  7560.         case 'IDH_pddefDownload':
  7561.             L_IDH_pddefDownload_TEXT='(download: The process of transferring a copy of a file from a device or computer to another computer.)';
  7562.             sTemp=L_IDH_pddefDownload_TEXT;
  7563.             break;
  7564.         case 'IDH_pddefdrop_shadow':
  7565.             L_IDH_pddefdrop_shadow_TEXT='(drop shadow: a shaded outline that appears behind an object and creates the illusion of depth.)';
  7566.             sTemp=L_IDH_pddefdrop_shadow_TEXT;
  7567.             break;
  7568.         case 'IDH_pddefEdgeFinderWidth':
  7569.             L_IDH_pddefEdgeFinderWidth_TEXT='(Edge Finder width: The area of an object that the Edge Finder searches to locate a traceable outline. If the area you\'re tracing contrasts sharply with the rest of the object, using a wider Edge Finder width will yield the best results.)';
  7570.             sTemp=L_IDH_pddefEdgeFinderWidth_TEXT;
  7571.             break;
  7572.         case 'IDH_pddefExtrusion':
  7573.             L_IDH_pddefExtrusion_TEXT='(extrusion: The depth or thickness of a three-dimensional object. Extrusion can also refer to the amount that a 3-D object\'s sides are pushed out.)';
  7574.             sTemp=L_IDH_pddefExtrusion_TEXT;
  7575.             break;
  7576.         case 'IDH_pddefEyedropperTool':
  7577.             L_IDH_pddefEyedropperTool_TEXT='(Eyedropper: A tool you can use to select a color from one object and apply it to another object.)';
  7578.             sTemp=L_IDH_pddefEyedropperTool_TEXT;
  7579.             break;
  7580.         case 'IDH_pddefFace':
  7581.             L_IDH_pddefFace_TEXT='(face: The front surface of a three-dimensional object. Typically, the face of a 3-D object is the two-dimensional object from which the 3-D object was generated.)';
  7582.             sTemp=L_IDH_pddefFace_TEXT;
  7583.             break;
  7584.         case 'IDH_pddeffidelity':
  7585.             L_IDH_pddeffidelity_TEXT='(fidelity: The accuracy with which an image is reproduced on your personal computer.)';
  7586.             sTemp=L_IDH_pddeffidelity_TEXT;
  7587.             break;
  7588.         case 'IDH_pddefFillN':
  7589.             L_IDH_pddefFillN_TEXT='(fill: The color, pattern, texture, or picture used to fill the inside of an object.)';
  7590.             sTemp=L_IDH_pddefFillN_TEXT;
  7591.             break;
  7592.         case 'IDH_pddefFineTuning':
  7593.             L_IDH_pddefFineTuning_TEXT='(Fine tuning and Bleed settings: Fine tuning settings shift all inserted images by the same amount to align them properly on a full sheet of labels or stickers. Bleed settings determine how much of an object can print beyond the edges of a label or sticker)';
  7594.             sTemp=L_IDH_pddefFineTuning_TEXT;
  7595.             break;
  7596.         case 'IDH_pddefFlatbedScan':
  7597.             L_IDH_pddefFlatbedScan_TEXT='(flatbed scanner: A scanner with a flat, transparent surface that holds the image to be scanned, generally a book or other document.)';
  7598.             sTemp=L_IDH_pddefFlatbedScan_TEXT;
  7599.             break;
  7600.         case 'IDH_pddefFlatFileFormat':
  7601.             L_IDH_pddefFlatFileFormat_TEXT='(flat file format: An image file format in which individual objects cannot be edited. Files stored in JPEG, GIF, and BMP formats are all flat files. The PhotoDraw MIX file format is not a flat file format.)';
  7602.             sTemp=L_IDH_pddefFlatFileFormat_TEXT;
  7603.             break;
  7604.         case 'IDH_pddefFlatten':
  7605.             L_IDH_pddefFlatten_TEXT='(flatten: To permanently combine a set of objects into one object. Flattening is similar to grouping in that both actions combine a set of objects. However, flattening is a permanent action, whereas a group of objects can be ungrouped.)';
  7606.             sTemp=L_IDH_pddefFlatten_TEXT;
  7607.             break;
  7608.         case 'IDH_pddefFlip':
  7609.             L_IDH_pddefFlip_TEXT='(flip: To change the orientation of a selected object horizontally, vertically, or in both directions.)';
  7610.             sTemp=L_IDH_pddefFlip_TEXT;
  7611.             break;
  7612.         case 'IDH_pddefFreeform':
  7613.             L_IDH_pddefFreeform_TEXT='(freeform: Any shape you create from scratch with PhotoDraw drawing tools. A puffy cloud, mountains, a lightening bolt, and your name in cursive are all freeforms.)';
  7614.             sTemp=L_IDH_pddefFreeform_TEXT;
  7615.             break;
  7616.         case 'IDH_pddefGallery':
  7617.             L_IDH_pddefGallery_TEXT='(gallery: A collection of predefined styles that you can apply to PhotoDraw objects. Galleries show previews of what the styles look like. Clicking an item in a gallery applies the style to the selection object(s).)';
  7618.             sTemp=L_IDH_pddefGallery_TEXT;
  7619.             break;
  7620.         case 'IDH_pddefGalleryList':
  7621.             L_IDH_pddefGalleryList_TEXT='(gallery list: A drop-down list that you use to select a gallery of style or effect previews. Gallery lists appear in many PhotoDraw workpanes.)';
  7622.             sTemp=L_IDH_pddefGalleryList_TEXT;
  7623.             break;
  7624.         case 'IDH_pddefGIF_animation':
  7625.             L_IDH_pddefGIF_animation_TEXT='(GIF animation: A file containing a series of graphics that are displayed in rapid sequence in a Web browser.)';
  7626.             sTemp=L_IDH_pddefGIF_animation_TEXT;
  7627.             break;
  7628.         case 'IDH_pddefgraphics_filters':
  7629.             L_IDH_pddefgraphics_filters_TEXT='(graphic filter: A program that transforms a picture stored in one file format to another format so that it can be displayed in a specific graphics program.)';
  7630.             sTemp=L_IDH_pddefgraphics_filters_TEXT;
  7631.             break;
  7632.         case 'IDH_pddefGroupV':
  7633.             L_IDH_pddefGroupV_TEXT='(group: To temporarily designate all currently selected objects as a single object within a composition. Grouped objects can be ungrouped.)';
  7634.             sTemp=L_IDH_pddefGroupV_TEXT;
  7635.             break;
  7636.         case 'IDH_pddefhhscanner':
  7637.             L_IDH_pddefhhscanner_TEXT='(hand-held scanner: An input device that users hold in their hands and move over the document to be scanned.)';
  7638.             sTemp=L_IDH_pddefhhscanner_TEXT;
  7639.             break;
  7640.         case 'IDH_pddefHighColor':
  7641.             L_IDH_pddefHighColor_TEXT='(HTML tag: A text string used in HTML to identify a page element\'s type, format, and appearance. FrontPage automatically creates HTML tags to represent each element on a page.)';
  7642.             sTemp=L_IDH_pddefHighColor_TEXT;
  7643.             break;
  7644.         case 'IDH_pddefHSV':
  7645.             L_IDH_pddefHSV_TEXT='(HSV: A model for defining colors that uses the attributes of hue, saturation, and value (brightness) to specify a color. In this model, setting the value to 0 produces black; setting the hue and saturation to 0 and setting the value to 100 produces white.)';
  7646.             sTemp=L_IDH_pddefHSV_TEXT;
  7647.             break;
  7648.         case 'IDH_pddefHue':
  7649.             L_IDH_pddefHue_TEXT='(hue: The color attribute that most readily distinguishes one color from other colors. A color\'s hue is also its name.)';
  7650.             sTemp=L_IDH_pddefHue_TEXT;
  7651.             break;
  7652.         case 'IDH_pddeflayers':
  7653.             L_IDH_pddeflayers_TEXT='(layers: A feature of Adobe Photoshop that lets you edit portions of your image without affecting other areas. Layers are laid over the background canvas, so that each object can occupy its own layer.)';
  7654.             sTemp=L_IDH_pddeflayers_TEXT;
  7655.             break;
  7656.         case 'IDH_pddefLineSeg':
  7657.             L_IDH_pddefLineSeg_TEXT='(line segment: The straight or curved line that connects two points in a drawing object.)';
  7658.             sTemp=L_IDH_pddefLineSeg_TEXT;
  7659.             break;
  7660.         case 'IDH_pddefLosslessCompression':
  7661.             L_IDH_pddefLosslessCompression_TEXT='(lossless compression: A method for reducing file size in which image quality is retained regardless of the compression level. GIF format uses lossless compression.)';
  7662.             sTemp=L_IDH_pddefLosslessCompression_TEXT;
  7663.             break;
  7664.         case 'IDH_pddefLossyCompression':
  7665.             L_IDH_pddefLossyCompression_TEXT='(lossy compression: A method for reducing file size in which image quality degrades as the file size decreases. JPEG format, which uses lossy compression, lets you control the level of compression to balance the picture quality and the file size.)';
  7666.             sTemp=L_IDH_pddefLossyCompression_TEXT;
  7667.             break;
  7668.         case 'IDH_pddefMIX':
  7669.             L_IDH_pddefMIX_TEXT='(MIX: The Microsoft PhotoDraw native file format. Saving a picture in MIX format maintains all the objects in the picture as separate objects, allowing you to edit the individual objects when you reopen the file.)';
  7670.             sTemp=L_IDH_pddefMIX_TEXT;
  7671.             break;
  7672.         case 'IDH_pddefMonochrome':
  7673.             L_IDH_pddefMonochrome_TEXT='(monochrome: A photograph or drawing that contains a single hue or color, typically black.)';
  7674.             sTemp=L_IDH_pddefMonochrome_TEXT;
  7675.             break;
  7676.         case 'IDH_pddefObjectList':
  7677.             L_IDH_pddefObjectList_TEXT='(object list: The list of objects in a PhotoDraw picture that appears to the left of the workspace. You can use the object list to select objects that are hidden in the workspace, as well as to change the order of objects in the picture.)';
  7678.             sTemp=L_IDH_pddefObjectList_TEXT;
  7679.             break;
  7680.         case 'IDH_pddefopaque':
  7681.             L_IDH_pddefopaque_TEXT='(opacity: The quality of an object that defines the ability of light to pass through it. If an object is completely opaque, light does not pass through it.)';
  7682.             sTemp=L_IDH_pddefopaque_TEXT;
  7683.             break;
  7684.         case 'IDH_pddefOptimizedPalette':
  7685.             L_IDH_pddefOptimizedPalette_TEXT='(optimized palette: A palette that you create and fill yourself. After you create an optimized palette, you can modify the colors in it or remove the palette altogether.)';
  7686.             sTemp=L_IDH_pddefOptimizedPalette_TEXT;
  7687.             break;
  7688.         case 'IDH_pddeforder':
  7689.             L_IDH_pddeforder_TEXT='(order: The front-to-back placement of an object relative to other objects in a picture.)';
  7690.             sTemp=L_IDH_pddeforder_TEXT;
  7691.             break;
  7692.         case 'IDH_pddefPan':
  7693.             L_IDH_pddefPan_TEXT='(pan: To move the view of a PhotoDraw picture up, down, left, or right. You can use the view finder in the Pan and Zoom window to shift your view of a picture shown in the workspace.)';
  7694.             sTemp=L_IDH_pddefPan_TEXT;
  7695.             break;
  7696.         case 'IDH_pddefPanZoomWindow':
  7697.             L_IDH_pddefPanZoomWindow_TEXT='(Pan and Zoom window: Contains the tools you use when you want to concentrate on a particular area of a picture.)';
  7698.             sTemp=L_IDH_pddefPanZoomWindow_TEXT;
  7699.             break;
  7700.         case 'IDH_pddefphoto_brush':
  7701.             L_IDH_pddefphoto_brush_TEXT='(photo brush: A line style created from a photographic image, such as a chain, a snake, etc.)';
  7702.             sTemp=L_IDH_pddefphoto_brush_TEXT;
  7703.             break;
  7704.         case 'IDH_pddefphoto_stamp':
  7705.             L_IDH_pddefphoto_stamp_TEXT='(photo stamp: A line style created from stamping an image, such as a daisy or a shoe, along a path that you draw.)';
  7706.             sTemp=L_IDH_pddefphoto_stamp_TEXT;
  7707.             break;
  7708.         case 'IDH_pddefPicture':
  7709.             L_IDH_pddefPicture_TEXT='(picture: A Microsoft PhotoDraw file is called a picture, and may be composed of one or more objects.)';
  7710.             sTemp=L_IDH_pddefPicture_TEXT;
  7711.             break;
  7712.         case 'IDH_pddefPictureArea':
  7713.             L_IDH_pddefPictureArea_TEXT='(background: The area defined by a white rectangle on the Microsoft PhotoDraw workspace. When you save in any format other than MIX, your picture is cropped to this rectangle.)';
  7714.             sTemp=L_IDH_pddefPictureArea_TEXT;
  7715.             break;
  7716.         case 'IDH_pddefPictureGuides':
  7717.             L_IDH_pddefPictureGuides_TEXT='(background handles: The handles used to resize the background. By default, background handles are hidden.)';
  7718.             sTemp=L_IDH_pddefPictureGuides_TEXT;
  7719.             break;
  7720.         case 'IDH_pddefPictureList':
  7721.             L_IDH_pddefPictureList_TEXT='(Picture List: The list of open pictures that appears to the left of the workspace. You can use the Picture List to switch between open pictures, to copy objects from one picture to another, and to select objects in a picture.)';
  7722.             sTemp=L_IDH_pddefPictureList_TEXT;
  7723.             break;
  7724.         case 'IDH_pddefPluginProgram':
  7725.             L_IDH_pddefPluginProgram_TEXT='(plug-in filter: Software programs that you install to enhance the Microsoft PhotoDraw program. PhotoDraw supports Adobe Photoshop-compatible filter plug-ins.)';
  7726.             sTemp=L_IDH_pddefPluginProgram_TEXT;
  7727.             break;
  7728.         case 'IDH_pddefPoints':
  7729.             L_IDH_pddefPoints_TEXT='(points: Also known as vertices. In PhotoDraw, the term point refers to the highest point of a curve, the point where a curve ends, or the point where two line segments meet in a polygon or freeform.)';
  7730.             sTemp=L_IDH_pddefPoints_TEXT;
  7731.             break;
  7732.         case 'IDH_pddefPPI':
  7733.             L_IDH_pddefPPI_TEXT='(pixels per inch (PPI): A measurement of the clarity or fineness of detail of an image displayed on a computer monitor.)';
  7734.             sTemp=L_IDH_pddefPPI_TEXT;
  7735.             break;
  7736.         case 'IDH_pddefPreview':
  7737.             L_IDH_pddefPreview_TEXT='(preview: A thumbnail representation that you click to open at full size or to apply as an effect or style.)';
  7738.             sTemp=L_IDH_pddefPreview_TEXT;
  7739.             break;
  7740.         case 'IDH_pddefPrintFile':
  7741.             L_IDH_pddefPrintFile_TEXT='(print file: A file that can be sent directly from a computer to a printer port without being opened first. PhotoDraw saves print files with a .prn file extension.)';
  7742.             sTemp=L_IDH_pddefPrintFile_TEXT;
  7743.             break;
  7744.         case 'IDH_pddefPrintQuality':
  7745.             L_IDH_pddefPrintQuality_TEXT='(print quality: The quality of your printed picture. Microsoft PhotoDraw offers three print qualities: Good, Better, and Best.)';
  7746.             sTemp=L_IDH_pddefPrintQuality_TEXT;
  7747.             break;
  7748.         case 'IDH_pddefPureBlack':
  7749.             L_IDH_pddefPureBlack_TEXT='(pure black: In the RGB model, the color that results from mixing zero amounts of red, green, and blue.)';
  7750.             sTemp=L_IDH_pddefPureBlack_TEXT;
  7751.             break;
  7752.         case 'IDH_pddefPureBlue':
  7753.             L_IDH_pddefPureBlue_TEXT='(pure blue: A primary color in the RGB and HSV color models. In the RGB model, varying amounts of red, green, and blue are combined to create different colors.)';
  7754.             sTemp=L_IDH_pddefPureBlue_TEXT;
  7755.             break;
  7756.         case 'IDH_pddefPureCyan':
  7757.             L_IDH_pddefPureCyan_TEXT='(pure cyan: A secondary color that, according to the RGB model, contains the maximum amounts of green and blue and zero amounts of red. In the CMYK color-mixing method, cyan is one of the colors subtracted from white to create other colors.)';
  7758.             sTemp=L_IDH_pddefPureCyan_TEXT;
  7759.             break;
  7760.         case 'IDH_pddefPureGreen':
  7761.             L_IDH_pddefPureGreen_TEXT='(pure green: A primary color in the RGB and HSV color models. In the RGB model, varying amounts of red, green, and blue are combined to create different colors.)';
  7762.             sTemp=L_IDH_pddefPureGreen_TEXT;
  7763.             break;
  7764.         case 'IDH_pddefPureMagenta':
  7765.             L_IDH_pddefPureMagenta_TEXT='(pure magenta: A secondary color that, according to the RGB model, contains the maximum amounts of red and blue and zero amounts of green. In the CMYK color-mixing method, magenta is one of the colors subtracted from white to create other colors.)';
  7766.             sTemp=L_IDH_pddefPureMagenta_TEXT;
  7767.             break;
  7768.         case 'IDH_pddefPureRed':
  7769.             L_IDH_pddefPureRed_TEXT='(pure red: A primary color in the RGB and HSV color models. In the RGB model, varying amounts of red, green, and blue are combined to create different colors.)';
  7770.             sTemp=L_IDH_pddefPureRed_TEXT;
  7771.             break;
  7772.         case 'IDH_pddefPureWhite':
  7773.             L_IDH_pddefPureWhite_TEXT='(pure white: In the RGB color model, the color that results from combining the maximum amounts of red, green, and blue.)';
  7774.             sTemp=L_IDH_pddefPureWhite_TEXT;
  7775.             break;
  7776.         case 'IDH_pddefPureYellow':
  7777.             L_IDH_pddefPureYellow_TEXT='(pure yellow: A secondary color that, according to the RGB model, contains the maximum amounts of red and green and zero amounts of blue)';
  7778.             sTemp=L_IDH_pddefPureYellow_TEXT;
  7779.             break;
  7780.         case 'IDH_pddefrepair_box':
  7781.             L_IDH_pddefrepair_box_TEXT='(repair box: The rectangle that temporarily appears around the points you click in a picture to remove a scratch.)';
  7782.             sTemp=L_IDH_pddefrepair_box_TEXT;
  7783.             break;
  7784.         case 'IDH_pddefRotate':
  7785.             L_IDH_pddefRotate_TEXT='(rotate: To turn an object about its center in a clockwise or counter-clockwise direction.)';
  7786.             sTemp=L_IDH_pddefRotate_TEXT;
  7787.             break;
  7788.         case 'IDH_pddefRotateHandle':
  7789.             L_IDH_pddefRotateHandle_TEXT='(rotate handle: The filled circle handle on a PhotoDraw object that you drag to rotate the object.)';
  7790.             sTemp=L_IDH_pddefRotateHandle_TEXT;
  7791.             break;
  7792.         case 'IDH_pddefroyalty_free':
  7793.             L_IDH_pddefroyalty_free_TEXT='(royalty-free: The absence of a requirement to pay proprietors for the right to use their pictures.)';
  7794.             sTemp=L_IDH_pddefroyalty_free_TEXT;
  7795.             break;
  7796.         case 'IDH_pddefscan':
  7797.             L_IDH_pddefscan_TEXT='(scan: To move a light across a surface such as a page of text so that it can be interpreted by a computer.)';
  7798.             sTemp=L_IDH_pddefscan_TEXT;
  7799.             break;
  7800.         case 'IDH_pddefScrollButtons':
  7801.             L_IDH_pddefScrollButtons_TEXT='(scroll buttons: Buttons located at the top and bottom of workpanes and the Picture List. You can use the scroll buttons to view more of a workpane or to scroll through thumbnails in the Picture List or the object list.)';
  7802.             sTemp=L_IDH_pddefScrollButtons_TEXT;
  7803.             break;
  7804.         case 'IDH_pddefSelect':
  7805.             L_IDH_pddefSelect_TEXT='(select: To specify an object by clicking it or by highlighting it with the TAB key.)';
  7806.             sTemp=L_IDH_pddefSelect_TEXT;
  7807.             break;
  7808.         case 'IDH_pddefSelectionOutline':
  7809.             L_IDH_pddefSelectionOutline_TEXT='(selection outline: The outline that surrounds and defines the area of a cutout.)';
  7810.             sTemp=L_IDH_pddefSelectionOutline_TEXT;
  7811.             break;
  7812.         case 'IDH_pddefShininess':
  7813.             L_IDH_pddefShininess_TEXT='(shininess: A property of three-dimensional objects that determines the highlighting of a surface. A low level of shininess diffuses the highlighting, while a high level sharpens it.)';
  7814.             sTemp=L_IDH_pddefShininess_TEXT;
  7815.             break;
  7816.         case 'IDH_pddefSkew':
  7817.             L_IDH_pddefSkew_TEXT='(shear: To distort an object by skewing its opposing sides in opposite directions around its center.)';
  7818.             sTemp=L_IDH_pddefSkew_TEXT;
  7819.             break;
  7820.         case 'IDH_pddefSkewHandle':
  7821.             L_IDH_pddefSkewHandle_TEXT='(shear handle: The handle on an object\'s selection rectangle that you drag to shear the object.)';
  7822.             sTemp=L_IDH_pddefSkewHandle_TEXT;
  7823.             break;
  7824.         case 'IDH_pddefslider':
  7825.             L_IDH_pddefslider_TEXT='(slider: A control that displays and sets values for picture attributes such as brightness, contrast, transparency, and tint.)';
  7826.             sTemp=L_IDH_pddefslider_TEXT;
  7827.             break;
  7828.         case 'IDH_pddefSmallIncrements':
  7829.             L_IDH_pddefSmallIncrements_TEXT='(small increments: Short distances along the edge of the area that you want to cut out or erase.)';
  7830.             sTemp=L_IDH_pddefSmallIncrements_TEXT;
  7831.             break;
  7832.         case 'IDH_pddefStackN':
  7833.             L_IDH_pddefStackN_TEXT='(stack: The order of objects, from front to back, in a picture.)';
  7834.             sTemp=L_IDH_pddefStackN_TEXT;
  7835.             break;
  7836.         case 'IDH_pddefsupported_file_format':
  7837.             L_IDH_pddefsupported_file_format_TEXT='(supported file format: one of the file formats that Microsoft PhotoDraw recognizes without requiring you to install third-party graphics filters.)';
  7838.             sTemp=L_IDH_pddefsupported_file_format_TEXT;
  7839.             break;
  7840.         case 'IDH_pddefTangent':
  7841.             L_IDH_pddefTangent_TEXT='(tangent: A line that extends through a vertex or point. Dragging the end point of the tangent changes the shape of the curve.)';
  7842.             sTemp=L_IDH_pddefTangent_TEXT;
  7843.             break;
  7844.         case 'IDH_pddefTemplate':
  7845.             L_IDH_pddefTemplate_TEXT='(template: A predefined design that you can use to create pictures for direct print or for another program. PhotoDraw templates include Web Graphics, Flyers, Cards, and Designer Clip Art.)';
  7846.             sTemp=L_IDH_pddefTemplate_TEXT;
  7847.             break;
  7848.         case 'IDH_pddefTextObject':
  7849.             L_IDH_pddefTextObject_TEXT='(text object: A string of text that appears in your pictures as a single object. A text object can range from one character to several sentences.)';
  7850.             sTemp=L_IDH_pddefTextObject_TEXT;
  7851.             break;
  7852.         case 'IDH_pddefTrueColor':
  7853.             L_IDH_pddefTrueColor_TEXT='(true color: In Microsoft PhotoDraw, the color specification that produces the maximum range of colors that can be differentiated by the human eye.)';
  7854.             sTemp=L_IDH_pddefTrueColor_TEXT;
  7855.             break;
  7856.         case 'IDH_pddefUndock':
  7857.             L_IDH_pddefUndock_TEXT='(undock: To move a menu or workpane from its default position on the workspace.)';
  7858.             sTemp=L_IDH_pddefUndock_TEXT;
  7859.             break;
  7860.         case 'IDH_pddefViewFinder':
  7861.             L_IDH_pddefViewFinder_TEXT='(view finder: The rectangular outline located inside the Pan and Zoom window that you drag to magnify a portion of an object or picture.)';
  7862.             sTemp=L_IDH_pddefViewFinder_TEXT;
  7863.             break;
  7864.         case 'IDH_pddefViewport':
  7865.             L_IDH_pddefViewport_TEXT='(viewport: A view into a document or graphical image that, unlike a window, cuts off portions outside the range of the viewport. A viewport can cover all of a screen or only a portion.)';
  7866.             sTemp=L_IDH_pddefViewport_TEXT;
  7867.             break;
  7868.         case 'IDH_pddefvisual_menu':
  7869.             L_IDH_pddefvisual_menu_TEXT='(visual menu: The bar located between the menu bar and toolbar that displays many tasks that you\'ll carry out in PhotoDraw.)';
  7870.             sTemp=L_IDH_pddefvisual_menu_TEXT;
  7871.             break;
  7872.         case 'IDH_pddefWorkspace':
  7873.             L_IDH_pddefWorkspace_TEXT='(workspace: The entire area that you can use when you create a picture in Microsoft PhotoDraw. The workspace includes the background and the surrounding scratch area.)';
  7874.             sTemp=L_IDH_pddefWorkspace_TEXT;
  7875.             break;
  7876.         case 'IDH_pddefZoom':
  7877.             L_IDH_pddefZoom_TEXT='(zoom: To change the display magnification level. When you zoom to a level higher than 100 percent, less of the workspace is visible and the images on it appear larger.)';
  7878.             sTemp=L_IDH_pddefZoom_TEXT;
  7879.             break;
  7880.         case 'pddefRollover':
  7881.             L_pddefRollover_TEXT='(rollover: An effect that changes the appearance of the selected object when you hover over or click it. Typically, rollover effects are used to indicate that an object is hyperlinked.)';
  7882.             sTemp=L_pddefRollover_TEXT;
  7883.             break;
  7884.  
  7885.         // EPaper
  7886.  
  7887.         case 'DvAdf':
  7888.             L_DvAdf_TEXT='(ADF: An attachment available on some scanners that allows automatic scanning of multiple pages.)';
  7889.             sTemp=L_DvAdf_TEXT;
  7890.             break;
  7891.         case 'dvannotation':
  7892.             L_dvannotation_TEXT='(annotation: An element that you can add to mark up your document, including text, highlighting, freeform text or shapes, or a picture.)';
  7893.             sTemp=L_dvannotation_TEXT;
  7894.             break;
  7895.         case 'dvmicrosoftdocumentimagingformatmdi':
  7896.             L_dvmicrosoftdocumentimagingformatmdi_TEXT='(Microsoft Document Imaging Format (MDI): A high resolution, tag-based graphics format, based on the Tagged Image File Format (TIFF) used for digital graphics.)';
  7897.             sTemp=L_dvmicrosoftdocumentimagingformatmdi_TEXT;
  7898.             break;
  7899.         case 'dvobject':
  7900.             L_dvobject_TEXT='(object: A combination of code and data that can be treated as a unit, for example, a control form, or application component.)';
  7901.             sTemp=L_dvobject_TEXT;
  7902.             break;
  7903.         case 'DvOcr':
  7904.             L_DvOcr_TEXT='(OCR: Translates images of text, such as scanned documents, into actual text characters. Also known as text recognition.)';
  7905.             sTemp=L_DvOcr_TEXT;
  7906.             break;
  7907.         case 'DvPagePane':
  7908.             L_DvPagePane_TEXT='(page pane: Displays the page that\'s selected in the thumbnail pane in a larger size, and enables portions of the page to be selected and copied.)';
  7909.             sTemp=L_DvPagePane_TEXT;
  7910.             break;
  7911.         case 'DvReadingView':
  7912.             L_DvReadingView_TEXT='(Reading view: Presents a full-screen view of a single page or portion of a page for easy on-screen reading.)';
  7913.             sTemp=L_DvReadingView_TEXT;
  7914.             break;
  7915.         case 'DvThumbnailPane':
  7916.             L_DvThumbnailPane_TEXT='(thumbnail pane: Presents the current scanned document as one or more small images.)';
  7917.             sTemp=L_DvThumbnailPane_TEXT;
  7918.             break;
  7919.  
  7920.         // Designer
  7921.  
  7922.         case 'OdContentClass':
  7923.             L_OdContentClass_TEXT='(content class: A Web Storage System content class defines the intent or purpose of an item along with the names of properties that are intended for items in this class.)';
  7924.             sTemp=L_OdContentClass_TEXT;
  7925.             break;
  7926.         case 'OdDesignElement':
  7927.             L_OdDesignElement_TEXT='(design element: A page, frameset, item type, form, view, or resource (such as a script file, text file, cascading style sheet, or image).)';
  7928.             sTemp=L_OdDesignElement_TEXT;
  7929.             break;
  7930.         case 'OdEcmascript':
  7931.             L_OdEcmascript_TEXT='(ECMAScript: A scripting language standard defined by the European Computer Manufacturers Association (ECMA) 262 specification. Microsoft implements ECMAScript as JScript, and Netscape implements ECMAScript as JavaScript.)';
  7932.             sTemp=L_OdEcmascript_TEXT;
  7933.             break;
  7934.         case 'OdFrameset':
  7935.             L_OdFrameset_TEXT='(frameset: A page that divides a Web browser window into different areas called frames that can each display a different Web page. Framesets are often used to display a page with navigation elements or a header in one frame and a page in another frame.)';
  7936.             sTemp=L_OdFrameset_TEXT;
  7937.             break;
  7938.         case 'OdItemType':
  7939.             L_OdItemType_TEXT='(item type: The data definition for a class of items stored in a Web application. An item type consists of its name and references to the default set of fields (properties) associated with items of that class.)';
  7940.             sTemp=L_OdItemType_TEXT;
  7941.             break;
  7942.         case 'OdLocalInformationStoreFile':
  7943.             L_OdLocalInformationStoreFile_TEXT='(Local Information Store file (.lis): Data file that caches your Outlook items, Web applications opened with Outlook, and Web applications under development online in Solution Designer. You can also create applications offline in an .lis file.)';
  7944.             sTemp=L_OdLocalInformationStoreFile_TEXT;
  7945.             break;
  7946.         case 'OdPrimary':
  7947.             L_OdPrimary_TEXT='(primary: A primary form, frameset, or page has no restrictions as to what client browsers or languages can access the form, frameset, or page.)';
  7948.             sTemp=L_OdPrimary_TEXT;
  7949.             break;
  7950.         case 'OdProjectItem':
  7951.             L_OdProjectItem_TEXT='(project item: A subfolder or a design element in a Solution Designer project, which can be a page, frameset, item type, form, view, or generic item (any item added to the project folder).)';
  7952.             sTemp=L_OdProjectItem_TEXT;
  7953.             break;
  7954.         case 'OdSchema':
  7955.             L_OdSchema_TEXT='(schema: The formal definition of the structure of a database. For the Web Storage System, the schema defines item types (also called content classes), which play a similar role to tables in other database systems, and fields (also called properties).)';
  7956.             sTemp=L_OdSchema_TEXT;
  7957.             break;
  7958.         case 'OdSimpleAction':
  7959.             L_OdSimpleAction_TEXT='(simple action: A button control for performing pre-scripted actions on forms and pages, such as saving an item or setting the value of a field. You can customize most simple action buttons by right-clicking the button, and then clicking Properties.)';
  7960.             sTemp=L_OdSimpleAction_TEXT;
  7961.             break;
  7962.         case 'OdSubstitute':
  7963.             L_OdSubstitute_TEXT='(substitute: A substitute form, frameset, or page is one that has been registered to be displayed for only certain client browsers and languages.)';
  7964.             sTemp=L_OdSubstitute_TEXT;
  7965.             break;
  7966.         case 'OdUniformResourceName':
  7967.             L_OdUniformResourceName_TEXT='(URN: An Internet standard for uniquely identifying a network resource. In Web applications, URNs are used to name item types and field definitions. The format of a URN uses a registered domain name. For example, urn:schemas-microsoft-com:datatypes#type.)';
  7968.             sTemp=L_OdUniformResourceName_TEXT;
  7969.             break;
  7970.         case 'OdView':
  7971.             L_OdView_TEXT='(view: An interactive list that displays the data in your application, typically in a table format. A view consists of a definition of what fields to display, which is hosted on a page by the View control to render the view and provide interactivity.)';
  7972.             sTemp=L_OdView_TEXT;
  7973.             break;
  7974.         case 'OdWebParts':
  7975.             L_OdWebParts_TEXT='(Web Parts: The components that make up a digital dashboard. Web Parts are reusable components that can contain any kind of Web-based information, including analytical, collaborative, and database information.)';
  7976.             sTemp=L_OdWebParts_TEXT;
  7977.             break;
  7978.         case 'OdWebStorageSystem':
  7979.             L_OdWebStorageSystem_TEXT='(WSS: The storage component of Exchange 2000 and SharePoint Portal servers, which integrates Web server, database, file system, and workgroup functionality. The WSS lets you store and share many types of data in a single integrated system.)';
  7980.             sTemp=L_OdWebStorageSystem_TEXT;
  7981.             break;
  7982.  
  7983.         // XDocs
  7984.  
  7985.         case 'xdactivefield':
  7986.             L_xdactivefield_TEXT='(active field: The field on a form in which the cursor is placed.)';
  7987.             sTemp=L_xdactivefield_TEXT;
  7988.             break;
  7989.         case 'xdattributefield':
  7990.             L_xdattributefield_TEXT='(attribute field: A field in the data source that can contain data and that is an attribute (instead of an element). Attribute fields cannot contain other fields.)';
  7991.             sTemp=L_xdattributefield_TEXT;
  7992.             break;
  7993.         case 'xdbind':
  7994.             L_xdbind_TEXT='(bind: To connect a control to a field or group in the data source so that data entered into the control is saved. When a control is unbound, it is not connected to a field or group, and so data entered into the control will not be saved.)';
  7995.             sTemp=L_xdbind_TEXT;
  7996.             break;
  7997.         case 'xdchildelement':
  7998.             L_xdchildelement_TEXT='(child element: In an XML tree structure, the element that is contained by the parent element.)';
  7999.             sTemp=L_xdchildelement_TEXT;
  8000.             break;
  8001.         case 'xdclosedcontentmodel':
  8002.             L_xdclosedcontentmodel_TEXT='(closed content model: A set of XML document rules that states that an element in an XML document cannot include any information that is not declared in the schema that the document references.)';
  8003.             sTemp=L_xdclosedcontentmodel_TEXT;
  8004.             break;
  8005.         case 'xdconditionalformatting':
  8006.             L_xdconditionalformatting_TEXT='(conditional formatting: Changing the appearance of a control, including its visibility, based on values entered into the form.)';
  8007.             sTemp=L_xdconditionalformatting_TEXT;
  8008.             break;
  8009.         case 'xdcssselector':
  8010.             L_xdcssselector_TEXT='(CSS (cascading style sheets) selector: The name of the element type to which the display information applies.)';
  8011.             sTemp=L_xdcssselector_TEXT;
  8012.             break;
  8013.         case 'xdcustominstalledform':
  8014.             L_xdcustominstalledform_TEXT='(custom installed form: A form that is installed with a custom setup program and that usually has access to files and settings on the computer.)';
  8015.             sTemp=L_xdcustominstalledform_TEXT;
  8016.             break;
  8017.         case 'xdcustomtaskpane':
  8018.             L_xdcustomtaskpane_TEXT='(custom task pane: An .html file whose content is displayed in a window next to a form. Custom task panes can provide form-specific commands and Help content.)';
  8019.             sTemp=L_xdcustomtaskpane_TEXT;
  8020.             break;
  8021.         case 'xddataadapter':
  8022.             L_xddataadapter_TEXT='(data adapter: An object used to submit data to and retrieve data from databases, Web services, and .xml files.)';
  8023.             sTemp=L_xddataadapter_TEXT;
  8024.             break;
  8025.         case 'xddatasource':
  8026.             L_xddatasource_TEXT='(data source: The collection of fields and groups that define and store the data for an InfoPath form. Controls in the form are bound to the fields and groups in the data source.)';
  8027.             sTemp=L_xddatasource_TEXT;
  8028.             break;
  8029.         case 'xddatatype':
  8030.             L_xddatatype_TEXT='(data type: Property of a field that defines the kinds of data the field can store. Data types include Text, Rich Text, Whole Number, Decimal, True/False, Hyperlink, Date, Time, Date and Time, and Picture.)';
  8031.             sTemp=L_xddatatype_TEXT;
  8032.             break;
  8033.         case 'xddatavalidation':
  8034.             L_xddatavalidation_TEXT='(data validation: The process of testing the accuracy of data; a set of rules you can apply to a control to specify the type and range of data that users can enter.)';
  8035.             sTemp=L_xddatavalidation_TEXT;
  8036.             break;
  8037.         case 'xddeclarativeprogramming':
  8038.             L_xddeclarativeprogramming_TEXT='(declarative programming: Rule-based programming in which each rule is independent and the order in which rules are declared or executed is not significant.)';
  8039.             sTemp=L_xddeclarativeprogramming_TEXT;
  8040.             break;
  8041.         case 'xddesignmode':
  8042.             L_xddesignmode_TEXT='(design mode: The InfoPath design environment in which you can create or modify a form template.)';
  8043.             sTemp=L_xddesignmode_TEXT;
  8044.             break;
  8045.         case 'xddialogboxalert':
  8046.             L_xddialogboxalert_TEXT='(dialog box alert: A data validation alert that opens a dialog box with a custom error message when invalid data is entered into a control.)';
  8047.             sTemp=L_xddialogboxalert_TEXT;
  8048.             break;
  8049.         case 'xddocumenttypedefinitiondtd':
  8050.             L_xddocumenttypedefinitiondtd_TEXT='(Document Type Definition (DTD): The predecessor of a schema definition file that specifies rules for XML document elements, attributes, and containment relationships.)';
  8051.             sTemp=L_xddocumenttypedefinitiondtd_TEXT;
  8052.             break;
  8053.         case 'xdeventhandler':
  8054.             L_xdeventhandler_TEXT='(event handler: The script function code in an InfoPath form that responds to a form event or data validation event.)';
  8055.             sTemp=L_xdeventhandler_TEXT;
  8056.             break;
  8057.         case 'xdexpressionbox':
  8058.             L_xdexpressionbox_TEXT='(expression box: A control on a form that displays read-only data as the result of a lookup or calculation against the data using an XPath expression.)';
  8059.             sTemp=L_xdexpressionbox_TEXT;
  8060.             break;
  8061.         case 'xdfield':
  8062.             L_xdfield_TEXT='(field: An element or attribute in the data source that can contain data. If the field is an element, it can contain attribute fields. Fields store the data that is entered into controls.)';
  8063.             sTemp=L_xdfield_TEXT;
  8064.             break;
  8065.         case 'xdform':
  8066.             L_xdform_TEXT='(form: In InfoPath, a document with a set of controls into which users can enter information. InfoPath forms can contain features such as rich text boxes, date pickers, optional and repeating sections, data validation, and conditional formatting.)';
  8067.             sTemp=L_xdform_TEXT;
  8068.             break;
  8069.         case 'xdformarea':
  8070.             L_xdformarea_TEXT='(form area: The area of the InfoPath workspace that displays the form you are working with.)';
  8071.             sTemp=L_xdformarea_TEXT;
  8072.             break;
  8073.         case 'xdformdefinitionfilexsf':
  8074.             L_xdformdefinitionfilexsf_TEXT='(form definition file: An XML file with an .xsf extension that contains information about all other files and components used within a form, including user interface customizations, XML Schemas, views, business logic, events, and deployment settings.)';
  8075.             sTemp=L_xdformdefinitionfilexsf_TEXT;
  8076.             break;
  8077.         case 'xdformfiles':
  8078.             L_xdformfiles_TEXT='(form files: A collection of files that are used to implement an InfoPath form. File types can include .html, .xml, .xsd, .xslt, script, and other file types that are necessary to support the functionality of the form.)';
  8079.             sTemp=L_xdformfiles_TEXT;
  8080.             break;
  8081.         case 'xdformlibrary':
  8082.             L_xdformlibrary_TEXT='(form library: A folder in which a collection of forms based on the same template is stored and shared. Each form in a form library is associated with user-defined information that is displayed in the content listing for that library.)';
  8083.             sTemp=L_xdformlibrary_TEXT;
  8084.             break;
  8085.         case 'xdformlibrarycolumns':
  8086.             L_xdformlibrarycolumns_TEXT='(form library columns: Information from forms displayed in columns in a Windows SharePoint Services form library. For every form in the library, columns display information entered into controls that the form designer designated as form library columns.)';
  8087.             sTemp=L_xdformlibrarycolumns_TEXT;
  8088.             break;
  8089.         case 'xdformtemplate':
  8090.             L_xdformtemplate_TEXT='(form template: In InfoPath, a file or set of files that defines the data structure, appearance, and behavior of a form.)';
  8091.             sTemp=L_xdformtemplate_TEXT;
  8092.             break;
  8093.         case 'xdgroup':
  8094.             L_xdgroup_TEXT='(group: An element in the data source that can contain fields and other groups. Controls that contain other controls, such as repeating tables and sections, are bound to groups.)';
  8095.             sTemp=L_xdgroup_TEXT;
  8096.             break;
  8097.         case 'xdinlinealert':
  8098.             L_xdinlinealert_TEXT='(inline alert: A data validation alert that marks controls that contain invalid data with a dashed red border. Users can right-click controls to display custom error messages.)';
  8099.             sTemp=L_xdinlinealert_TEXT;
  8100.             break;
  8101.         case 'xdlayouttable':
  8102.             L_xdlayouttable_TEXT='(layout table: A collection of cells used to arrange form content such as text or controls.)';
  8103.             sTemp=L_xdlayouttable_TEXT;
  8104.             break;
  8105.         case 'xdlistcontrol':
  8106.             L_xdlistcontrol_TEXT='(list control: A control on a form that can be formatted as a bulleted, numbered, or plain list. A user can enter text into a list control, which repeats as needed.)';
  8107.             sTemp=L_xdlistcontrol_TEXT;
  8108.             break;
  8109.         case 'xdmicrosoftscripteditormse':
  8110.             L_xdmicrosoftscripteditormse_TEXT='(Microsoft Script Editor (MSE): A programming environment used to create, edit, and debug Microsoft JScript or Microsoft VBScript code in an InfoPath form.)';
  8111.             sTemp=L_xdmicrosoftscripteditormse_TEXT;
  8112.             break;
  8113.         case 'xdmicrosoftwindowsinstallermsi':
  8114.             L_xdmicrosoftwindowsinstallermsi_TEXT='(Microsoft Windows Installer (MSI): A tool that is used to create installation packages for software that is to be deployed on Windows operating systems.)';
  8115.             sTemp=L_xdmicrosoftwindowsinstallermsi_TEXT;
  8116.             break;
  8117.         case 'xdnamespace':
  8118.             L_xdnamespace_TEXT='(namespace: A mechanism that uniquely qualifies element names and relationships to avoid name collisions on elements that have the same name but are coming from multiple sources.)';
  8119.             sTemp=L_xdnamespace_TEXT;
  8120.             break;
  8121.         case 'xdopencontentmodel':
  8122.             L_xdopencontentmodel_TEXT='(open content model: A set of XML document rules that states that an element in an XML document can have additional child elements and attributes that are not declared in the schema that the document references.)';
  8123.             sTemp=L_xdopencontentmodel_TEXT;
  8124.             break;
  8125.         case 'xdoptionalsection':
  8126.             L_xdoptionalsection_TEXT='(optional section: A control on a form that contains other controls and that usually does not appear by default. Users can insert and remove optional sections when filling out the form.)';
  8127.             sTemp=L_xdoptionalsection_TEXT;
  8128.             break;
  8129.         case 'xdparentelement':
  8130.             L_xdparentelement_TEXT='(parent element: In XML, the element of which a given element is a child.)';
  8131.             sTemp=L_xdparentelement_TEXT;
  8132.             break;
  8133.         case 'xdprocessinginstructions':
  8134.             L_xdprocessinginstructions_TEXT='(processing instructions: Information stored in the prologue of an XML document. This information is passed through the XML parser to any application that uses the XML document.)';
  8135.             sTemp=L_xdprocessinginstructions_TEXT;
  8136.             break;
  8137.         case 'xdpublish':
  8138.             L_xdpublish_TEXT='(publish: To make a form available for others to fill out. A published form template is saved to a shared location such as a Web server or a company intranet.)';
  8139.             sTemp=L_xdpublish_TEXT;
  8140.             break;
  8141.         case 'xdreferencefield':
  8142.             L_xdreferencefield_TEXT='(reference field: A field that is associated with another field so that their properties always match. If the properties in one field are changed, the properties in the other field are updated automatically.)';
  8143.             sTemp=L_xdreferencefield_TEXT;
  8144.             break;
  8145.         case 'xdreferencegroup':
  8146.             L_xdreferencegroup_TEXT='(reference group: A group that is associated with another group so that their properties and the properties of the groups and fields they contain always match. If the properties of one group are changed, the other group is updated automatically.)';
  8147.             sTemp=L_xdreferencegroup_TEXT;
  8148.             break;
  8149.         case 'xdrepeatingfield':
  8150.             L_xdrepeatingfield_TEXT='(repeating field: A field in the data source that can occur more than once. Controls such as bulleted, numbered, and plain lists; repeating sections; and repeating tables can be bound to repeating fields.)';
  8151.             sTemp=L_xdrepeatingfield_TEXT;
  8152.             break;
  8153.         case 'xdrepeatinggroup':
  8154.             L_xdrepeatinggroup_TEXT='(repeating group: A group in the data source that can occur more than once. Controls such as repeating sections and repeating tables are bound to repeating groups.)';
  8155.             sTemp=L_xdrepeatinggroup_TEXT;
  8156.             break;
  8157.         case 'xdrepeatingsection':
  8158.             L_xdrepeatingsection_TEXT='(repeating section: A control on a form that contains other controls and that repeats as needed. Users can insert multiple sections when filling out the form.)';
  8159.             sTemp=L_xdrepeatingsection_TEXT;
  8160.             break;
  8161.         case 'xdrepeatingtable':
  8162.             L_xdrepeatingtable_TEXT='(repeating table: A control on a form that contains other controls in a table format and that repeats as needed. Users can insert multiple rows when filling out the form.)';
  8163.             sTemp=L_xdrepeatingtable_TEXT;
  8164.             break;
  8165.         case 'xdresourcemanager':
  8166.             L_xdresourcemanager_TEXT='(Resource Manager: The interface for adding and removing resource files that support the functionality of a form.)';
  8167.             sTemp=L_xdresourcemanager_TEXT;
  8168.             break;
  8169.         case 'xdrootelement':
  8170.             L_xdrootelement_TEXT='(root element: The element in an XML document that contains all other elements. It is the top-level element of an XML document and must be the first element in the document.)';
  8171.             sTemp=L_xdrootelement_TEXT;
  8172.             break;
  8173.         case 'xdsecondarydatasource':
  8174.             L_xdsecondarydatasource_TEXT='(secondary data source: An XML data file, database, or Web service that is used by a form for the entries in a list box or for script actions.)';
  8175.             sTemp=L_xdsecondarydatasource_TEXT;
  8176.             break;
  8177.         case 'xdsection':
  8178.             L_xdsection_TEXT='(section: A control on a form that contains other controls.)';
  8179.             sTemp=L_xdsection_TEXT;
  8180.             break;
  8181.         case 'xdtable':
  8182.             L_xdtable_TEXT='(table: One or more rows of cells commonly used to display numbers and other items for quick reference and analysis. Items in a table are organized into rows and columns.)';
  8183.             sTemp=L_xdtable_TEXT;
  8184.             break;
  8185.         case 'xdtextbox':
  8186.             L_xdtextbox_TEXT='(text box: A control into which a user can enter text. Rich text boxes allow data entry with text formatting choices.)';
  8187.             sTemp=L_xdtextbox_TEXT;
  8188.             break;
  8189.         case 'xdvalid':
  8190.             L_xdvalid_TEXT='(valid: Error free, or acceptable according to an established set of rules or standards. For example, data entered into a form is valid if it meets the criteria set in the form\'s data validation rules.)';
  8191.             sTemp=L_xdvalid_TEXT;
  8192.             break;
  8193.         case 'xdvalidxml':
  8194.             L_xdvalidxml_TEXT='(valid XML: A well-formed XML document that conforms to a specific set of constraints, usually defined in an XML Schema.)';
  8195.             sTemp=L_xdvalidxml_TEXT;
  8196.             break;
  8197.         case 'xdview':
  8198.             L_xdview_TEXT='(view: A form-specific display setting that can be saved with a form template and applied to form data when the form is being filled out. Users can switch between views to choose the amount of data shown in the form.)';
  8199.             sTemp=L_xdview_TEXT;
  8200.             break;
  8201.         case 'xdwellformedxml':
  8202.             L_xdwellformedxml_TEXT='(well-formed XML: An XML document that meets the minimal criteria for a conforming XML document.)';
  8203.             sTemp=L_xdwellformedxml_TEXT;
  8204.             break;
  8205.         case 'xdxhtml':
  8206.             L_xdxhtml_TEXT='(Extensible Hypertext Markup Language (XHTML): A markup language that extends HTML and reformulates it as XML.)';
  8207.             sTemp=L_xdxhtml_TEXT;
  8208.             break;
  8209.         case 'xdxmlattribute':
  8210.             L_xdxmlattribute_TEXT='(XML attribute: An XML structural construct. A name-value pair, separated by an equal sign and included in a tagged element, that modifies features of an element. All attribute values are text strings and must be enclosed in quotation marks.)';
  8211.             sTemp=L_xdxmlattribute_TEXT;
  8212.             break;
  8213.         case 'xdxmldata':
  8214.             L_xdxmldata_TEXT='(XML data: Data that is saved in an XML format. InfoPath forms are saved as XML data files.)';
  8215.             sTemp=L_xdxmldata_TEXT;
  8216.             break;
  8217.         case 'xdxmlelement':
  8218.             L_xdxmlelement_TEXT='(XML element: An XML structure that consists of a start tag, an end tag, and the information between the tags. Elements can have attributes and can contain other elements.)';
  8219.             sTemp=L_xdxmlelement_TEXT;
  8220.             break;
  8221.         case 'xdxmlparser':
  8222.             L_xdxmlparser_TEXT='(XML parser: A software component used to process XML documents by validating their structure and producing views or transformations of their content.)';
  8223.             sTemp=L_xdxmlparser_TEXT;
  8224.             break;
  8225.         case 'xdxmlsignature':
  8226.             L_xdxmlsignature_TEXT='(XML Signature: An XML-based digital signature that can be used to help secure the data contained in XML documents. XML Signatures are a standard governed by the World Wide Web Consortium (W3C).)';
  8227.             sTemp=L_xdxmlsignature_TEXT;
  8228.             break;
  8229.         case 'xdxmltemplatefile':
  8230.             L_xdxmltemplatefile_TEXT='(XML template file: An XML file that contains the sample data that is displayed in the fields of a form before a user fills it out.)';
  8231.             sTemp=L_xdxmltemplatefile_TEXT;
  8232.             break;
  8233.         case 'xdxpath':
  8234.             L_xdxpath_TEXT='(XML Path Language (XPath): A language used to address parts of an XML document. XPath also provides basic facilities for manipulation of strings, numbers, and Booleans.)';
  8235.             sTemp=L_xdxpath_TEXT;
  8236.             break;
  8237.         case 'xdxsltransformationxslt':
  8238.             L_xdxsltransformationxslt_TEXT='(XSL Transformation (XSLT): A language that is used to transform XML documents into other types of documents, such as HTML or XML. It is designed for use as part of XSL.)';
  8239.             sTemp=L_xdxsltransformationxslt_TEXT;
  8240.             break;
  8241.  
  8242.         // Visio
  8243.  
  8244.         case 'Abstract_class':
  8245.             L_Abstract_class_TEXT='(abstract class: A class for which no instances may be created.)';
  8246.             sTemp=L_Abstract_class_TEXT;
  8247.             break;
  8248.         case 'Abstract_type':
  8249.             L_Abstract_type_TEXT='(abstract type: A type with members that belong to a subtype. In a conceptual model, you indicate an abstract type by showing its title in italics.)';
  8250.             sTemp=L_Abstract_type_TEXT;
  8251.             break;
  8252.         case 'Action':
  8253.             L_Action_TEXT='(action: (1) A user-defined menu item associated with a shape. When the shape is selected, the item appears on the shortcut menu and on the Actions submenu of the Shape menu. (2) A program or Visio command that runs in response to an event.)';
  8254.             sTemp=L_Action_TEXT;
  8255.             break;
  8256.         case 'Action_2':
  8257.             L_Action_2_TEXT='(action: In a state-chart diagram, the response an object in a particular state makes to an event without changing its state. Unlike activities, actions have negligible execution times and cannot be interrupted.)';
  8258.             sTemp=L_Action_2_TEXT;
  8259.             break;
  8260.         case 'Action_state':
  8261.             L_Action_state_TEXT='(action state: In an activity diagram, a type of state that has an internal action and at least one outgoing transition that involves the explicit events of completing the internal action.)';
  8262.             sTemp=L_Action_state_TEXT;
  8263.             break;
  8264.         case 'Activation':
  8265.             L_Activation_TEXT='(activation: In a sequence diagram, the time period during which an object or actor is performing an action. Activation is represented by a thin rectangle.)';
  8266.             sTemp=L_Activation_TEXT;
  8267.             break;
  8268.         case 'Active_document':
  8269.             L_Active_document_TEXT='(active document: The document that is currently available for editing in Visio.)';
  8270.             sTemp=L_Active_document_TEXT;
  8271.             break;
  8272.         case 'Active_object':
  8273.             L_Active_object_TEXT='(active object: In a collaboration diagram, an object role that can initiate control. Typical active objects include processes and tasks. In contrast, a passive object holds data and may send messages, but it does not initiate control.)';
  8274.             sTemp=L_Active_object_TEXT;
  8275.             break;
  8276.         case 'Active_page':
  8277.             L_Active_page_TEXT='(active page: The drawing page that is currently available for editing in a Visio document.)';
  8278.             sTemp=L_Active_page_TEXT;
  8279.             break;
  8280.         case 'Activity':
  8281.             L_Activity_TEXT='(activity: In a statechart diagram, the response an object in a particular state makes to an event without changing its state. Unlike actions, activities have non-negligible execution times and can be interrupted. The keyword \"do\" indicates an activity.)';
  8282.             sTemp=L_Activity_TEXT;
  8283.             break;
  8284.         case 'Activity_diagram':
  8285.             L_Activity_diagram_TEXT='(activity diagram: A special case of a statechart diagram in which all of the states are action states and the transitions are triggered by the completion of actions in the source state.)';
  8286.             sTemp=L_Activity_diagram_TEXT;
  8287.             break;
  8288.         case 'Actor':
  8289.             L_Actor_TEXT='(actor: In a use-case diagram, a representation of a role played by an outside object. One physical object, therefore, may be represented by several actors. A communicates relationship indicates how an actor participates in a use case.)';
  8290.             sTemp=L_Actor_TEXT;
  8291.             break;
  8292.         case 'Actor_Class':
  8293.             L_Actor_Class_TEXT='(actor class: The basic component of a ROOM structure diagram. The space inside the actor can contain actor references, behavior end ports, reference ports, bindings, and layer connections. The border can contain class relay ports and class end ports.)';
  8294.             sTemp=L_Actor_Class_TEXT;
  8295.             break;
  8296.         case 'Actor_Reference':
  8297.             L_Actor_Reference_TEXT='(actor reference: The actors that define components of your structure diagram. Actor references can appear only inside an actor class. An actor reference can have reference ports on its outside border.)';
  8298.             sTemp=L_Actor_Reference_TEXT;
  8299.             break;
  8300.         case 'Add_on':
  8301.             L_Add_on_TEXT='(add-on: A program that extends the Visio application through Automation references to Visio objects, methods, and properties.)';
  8302.             sTemp=L_Add_on_TEXT;
  8303.             break;
  8304.         case 'Aggregation':
  8305.             L_Aggregation_TEXT='(aggregation: Indicates that one element, such as a point, is part of another element, such as a polygon. In UML notation, indicate aggregation by attaching a hollow diamond to the class that is the aggregate.)';
  8306.             sTemp=L_Aggregation_TEXT;
  8307.             break;
  8308.         case 'Alignment_box':
  8309.             L_Alignment_box_TEXT='(alignment box: The rectangle that appears around shapes and objects from other applications as you move them.)';
  8310.             sTemp=L_Alignment_box_TEXT;
  8311.             break;
  8312.         case 'Anchor_point':
  8313.             L_Anchor_point_TEXT='(anchor point: A fixed point that anchors a \"rubber band\" line, whose other end is connected to a control handle. As you move the control handle, the rubber band line stretches and shrinks to show the original location of the handle.)';
  8314.             sTemp=L_Anchor_point_TEXT;
  8315.             break;
  8316.         case 'Angle_of_rotation':
  8317.             L_Angle_of_rotation_TEXT='(angle of rotation: The angle of the orientation of a shape\'s local coordinate system with respect to its parent coordinate system. The angle of rotation is specified in the Angle cell of the Shape Transform section in a ShapeSheet spreadsheet.)';
  8318.             sTemp=L_Angle_of_rotation_TEXT;
  8319.             break;
  8320.         case 'Angular_units':
  8321.             L_Angular_units_TEXT='(angular units: The units in which angles are expressed in ShapeSheet cells.)';
  8322.             sTemp=L_Angular_units_TEXT;
  8323.             break;
  8324.         case 'Animated_build':
  8325.             L_Animated_build_TEXT='(animated build: A method of building a PowerPoint slide using elements of a Visio drawing. In an animated build, you introduce elements of the Visio drawing into a slide one at a time.)';
  8326.             sTemp=L_Animated_build_TEXT;
  8327.             break;
  8328.         case 'Antiscaling':
  8329.             L_Antiscaling_TEXT='(antiscaling: Behavior in which a shape is not sized according to the drawing scale of a page. The Visio application automatically antiscales shapes when the drawing scale of the master exceeds the range of eight.)';
  8330.             sTemp=L_Antiscaling_TEXT;
  8331.             break;
  8332.         case 'Argument':
  8333.             L_Argument_TEXT='(argument: A representation of the actual values passed to a dispatched request and aggregated within an action.)';
  8334.             sTemp=L_Argument_TEXT;
  8335.             break;
  8336.         case 'aspect_ratio':
  8337.             L_aspect_ratio_TEXT='(aspect ratio: A ratio of one dimension to another. When the aspect ratio is locked, the shape can be sized only proportionally; it cannot be sized in a singe dimension.)';
  8338.             sTemp=L_aspect_ratio_TEXT;
  8339.             break;
  8340.         case 'Asset':
  8341.             L_Asset_TEXT='(asset: A person or object for which you want to track information.)';
  8342.             sTemp=L_Asset_TEXT;
  8343.             break;
  8344.         case 'Association':
  8345.             L_Association_TEXT='(association: A relationship between two or more classes (for example, a point is on a polygon; a company places an order). In UML notation, indicate an association with a solid line.)';
  8346.             sTemp=L_Association_TEXT;
  8347.             break;
  8348.         case 'Association_class':
  8349.             L_Association_class_TEXT='(association class: In a static structure diagram, a class used to add attributes, operations, and more properties to an association. Drawn as a class attached by a dashed line to an association, an association class is actually a single modeling element.)';
  8350.             sTemp=L_Association_class_TEXT;
  8351.             break;
  8352.         case 'Association_End':
  8353.             L_Association_End_TEXT='(association end: The end of a binary or other association where it connects to a class. By associating properties with an association end, you can indicate the role or direction.)';
  8354.             sTemp=L_Association_End_TEXT;
  8355.             break;
  8356.         case 'AssociationRole':
  8357.             L_AssociationRole_TEXT='(AssociationRole: A type of collaboration role that describes the relationship between two ClassifierRoles. It is represented by a path between two class role elements and can include the underlined name of the corresponding association.)';
  8358.             sTemp=L_AssociationRole_TEXT;
  8359.             break;
  8360.         case 'Attribute':
  8361.             L_Attribute_TEXT='(attribute: An individual formatting element, such as line color, fill color, or line weight, that you can apply to shapes. A style can have more than one attribute.)';
  8362.             sTemp=L_Attribute_TEXT;
  8363.             break;
  8364.         case 'Attribute_2':
  8365.             L_Attribute_2_TEXT='(attribute: A data definition held by a class. The structure of a class is described by its attributes. The default syntax for an attribute is:  visibility name : type-expression=initial value {property string})';
  8366.             sTemp=L_Attribute_2_TEXT;
  8367.             break;
  8368.         case 'attribute_database_2':
  8369.             L_attribute_database_2_TEXT='(attribute: In a relational model, a column of a table. In an entity relationship model, a property of an entity.)';
  8370.             sTemp=L_attribute_database_2_TEXT;
  8371.             break;
  8372.         case 'Automatic_layout':
  8373.             L_Automatic_layout_TEXT='(automatic layout: The positioning of shapes and the routing of connectors that occurs while you edit a connected drawing or when you choose the Lay Out Shapes command on the Shape menu.)';
  8374.             sTemp=L_Automatic_layout_TEXT;
  8375.             break;
  8376.         case 'Automation':
  8377.             L_Automation_TEXT='(Automation: A means by which an application can incorporate or extend the functionality of another application by using its objects. Formerly known as OLE Automation.)';
  8378.             sTemp=L_Automation_TEXT;
  8379.             break;
  8380.         case 'Background':
  8381.             L_Background_TEXT='(background: A page that you can assign to another page to create multiple layers in a drawing. You can see the shapes on a background when the page it is assigned to is displayed. You must display the background page to select or edit the background.)';
  8382.             sTemp=L_Background_TEXT;
  8383.             break;
  8384.         case 'Begin_point':
  8385.             L_Begin_point_TEXT='(begin point: The selection handle at the beginning of a one-dimensional (1-D) shape. The begin point is marked by an X.)';
  8386.             sTemp=L_Begin_point_TEXT;
  8387.             break;
  8388.         case 'Binary_Association':
  8389.             L_Binary_Association_TEXT='(binary association: In a static structure diagram, a relationship between exactly two classes. You can add name and stereotype properties to a binary association. The point where a binary association connects to a class is an association end or role.)';
  8390.             sTemp=L_Binary_Association_TEXT;
  8391.             break;
  8392.         case 'Binding':
  8393.             L_Binding_TEXT='(binding: A kind of dependency that indicates a binding of parameterized class, or template, parameters to actual values to create a bound, or nonparameterized, element.)';
  8394.             sTemp=L_Binding_TEXT;
  8395.             break;
  8396.         case 'Bindings':
  8397.             L_Bindings_TEXT='(bindings: A representation of the communication path between actors.)';
  8398.             sTemp=L_Bindings_TEXT;
  8399.             break;
  8400.         case 'Bitmap':
  8401.             L_Bitmap_TEXT='(bitmap: An image stored as a pattern of dots. A scanned photograph or graphic that you create in a paint program is usually stored as a bitmap.)';
  8402.             sTemp=L_Bitmap_TEXT;
  8403.             break;
  8404.         case 'Block':
  8405.             L_Block_TEXT='(block: In a CAD drawing, one or more entities grouped together to form a single entity.)';
  8406.             sTemp=L_Block_TEXT;
  8407.             break;
  8408.         case 'Bound_element':
  8409.             L_Bound_element_TEXT='(bound element: In a static structure diagram, a use of a parameterized class, or template, in which the parameters from the parameterized class are bound to actual values.)';
  8410.             sTemp=L_Bound_element_TEXT;
  8411.             break;
  8412.         case 'Bow':
  8413.             L_Bow_TEXT='(bow: The distance from the midpoint of a circular arc to the midpoint of the arc\'s chord.)';
  8414.             sTemp=L_Bow_TEXT;
  8415.             break;
  8416.         case 'CAD':
  8417.             L_CAD_TEXT='(CAD: Acronym for computer-aided design.)';
  8418.             sTemp=L_CAD_TEXT;
  8419.             break;
  8420.         case 'Call_Event':
  8421.             L_Call_Event_TEXT='(CallEvent: In a statechart or activity diagram, an indication that an object has received a call for an operation. A CallEvent is defined using the following format:event-name (comma-separated-parameter-list))';
  8422.             sTemp=L_Call_Event_TEXT;
  8423.             break;
  8424.         case 'CAPSIF':
  8425.             L_CAPSIF_TEXT='(CAPSIF: A standard file format used in specifying or ordering furniture from distributors.)';
  8426.             sTemp=L_CAPSIF_TEXT;
  8427.             break;
  8428.         case 'Category':
  8429.             L_Category_TEXT='(category: A classification of information tracked in a facilities plan. Categories include assets such as person, computer, printer, asset, and space, as well as organizational groupings such as company or department.)';
  8430.             sTemp=L_Category_TEXT;
  8431.             break;
  8432.         case 'Cell_reference':
  8433.             L_Cell_reference_TEXT='(cell reference: Used in formulas in a ShapeSheet spreadsheet to calculate the value of one cell on the basis of the value of another cell.)';
  8434.             sTemp=L_Cell_reference_TEXT;
  8435.             break;
  8436.         case 'Center_of_rotation':
  8437.             L_Center_of_rotation_TEXT='(center of rotation: The point around which a shape or text block rotates.)';
  8438.             sTemp=L_Center_of_rotation_TEXT;
  8439.             break;
  8440.         case 'Change_Event':
  8441.             L_Change_Event_TEXT='(ChangeEvent: In a statechart or activity diagram, an event in which a designated condition becomes true. A ChangeEvent is indicated by the keyword when followed by a Boolean expression in parentheses, for example: when (balance < 0))';
  8442.             sTemp=L_Change_Event_TEXT;
  8443.             break;
  8444.         case 'Check_clause':
  8445.             L_Check_clause_TEXT='(check clause: Code that enforces constraints on a table or column.)';
  8446.             sTemp=L_Check_clause_TEXT;
  8447.             break;
  8448.         case 'Choicepoints':
  8449.             L_Choicepoints_TEXT='(choicepoints: The points at which  transitions split into multiple, mutually exclusive branches, each terminating at a different destination state. One of the branches must be a default branch.)';
  8450.             sTemp=L_Choicepoints_TEXT;
  8451.             break;
  8452.         case 'Chord':
  8453.             L_Chord_TEXT='(chord: A line that connects the endpoints of an arc.)';
  8454.             sTemp=L_Chord_TEXT;
  8455.             break;
  8456.         case 'Class':
  8457.             L_Class_TEXT='(class: In a static structure diagram, a set of objects with similar structure, behavior, and relationships. Classes are declared in class (static structure) diagrams and represent concepts in the systems being modeled.)';
  8458.             sTemp=L_Class_TEXT;
  8459.             break;
  8460.         case 'Class_module':
  8461.             L_Class_module_TEXT='(class module: In a Microsoft Visual Basic for Applications (VBA) or Visual Basic project, a module containing the definition of a class (its properties and methods).)';
  8462.             sTemp=L_Class_module_TEXT;
  8463.             break;
  8464.         case 'Classifier':
  8465.             L_Classifier_TEXT='(classifier: A superclass that includes class, data type, and interface subclasses. Because all classifier subclasses share the same syntax, they are all represented by the same rectangle model element.)';
  8466.             sTemp=L_Classifier_TEXT;
  8467.             break;
  8468.         case 'ClassifierRole':
  8469.             L_ClassifierRole_TEXT='(ClassifierRole: A type of collaboration role that is a slot for an object in a collaboration. It is represented by the class rectangle symbol with only the name compartment showing.)';
  8470.             sTemp=L_ClassifierRole_TEXT;
  8471.             break;
  8472.         case 'ClientSide_image_map':
  8473.             L_ClientSide_image_map_TEXT='(client-side image map: A graphic with different linked regions. All the information a Web browser needs to process a click on a linked region is stored in the HTML file with the image data.)';
  8474.             sTemp=L_ClientSide_image_map_TEXT;
  8475.             break;
  8476.         case 'Clipboard':
  8477.             L_Clipboard_TEXT='(Clipboard: A temporary storage area in Windows that is used to transfer data between documents and applications. You can use the Clipboard to copy shapes and text between drawings in the Visio program, and between programs.)';
  8478.             sTemp=L_Clipboard_TEXT;
  8479.             break;
  8480.         case 'closed_shape':
  8481.             L_closed_shape_TEXT='(closed shape: A shape that is surrounded by a continuous outline, such as a rectangle or circle. You can fill a closed shape with a color or a pattern.)';
  8482.             sTemp=L_closed_shape_TEXT;
  8483.             break;
  8484.         case 'Code_behind_events':
  8485.             L_Code_behind_events_TEXT='(code behind events: In a Microsoft Visual Basic for Applications (VBA) program, code that is executed when an event occurs. For example, a button on a user form usually has code behind the Click event.)';
  8486.             sTemp=L_Code_behind_events_TEXT;
  8487.             break;
  8488.         case 'Collaboration':
  8489.             L_Collaboration_TEXT='(collaboration: A collection of modeling elements that interact within a given context to perform an operation or a use case. The objects in a collaboration are roles describing types of objects rather than representations of the objects themselves.)';
  8490.             sTemp=L_Collaboration_TEXT;
  8491.             break;
  8492.         case 'Collaboration_diagram':
  8493.             L_Collaboration_diagram_TEXT='(collaboration diagram: An interaction diagram that shows, for one system event described by one use case, how a group of objects collaborate with one another.)';
  8494.             sTemp=L_Collaboration_diagram_TEXT;
  8495.             break;
  8496.         case 'Collaboration_role':
  8497.             L_Collaboration_role_TEXT='(collaboration role: A slot for an object in a collaboration that describes the type of objects that may play the role and its relationships to other roles. To show a collaboration role, use the notation for an object or a link.)';
  8498.             sTemp=L_Collaboration_role_TEXT;
  8499.             break;
  8500.         case 'Collection_type':
  8501.             L_Collection_type_TEXT='(collection type: Allows a collection; such as a set, list, or multiset; of objects of the same type to be stored in a single field.)';
  8502.             sTemp=L_Collection_type_TEXT;
  8503.             break;
  8504.         case 'Color_scheme':
  8505.             L_Color_scheme_TEXT='(color scheme: A set of colors you can assign to some drawing types. You can choose from preset color schemes, or you can create a new color scheme.)';
  8506.             sTemp=L_Color_scheme_TEXT;
  8507.             break;
  8508.         case 'Communicates_relationship':
  8509.             L_Communicates_relationship_TEXT='(communicates relationship: In a use case diagram, a relationship that defines how an actor participates in a use case. You can add an arrow to the relationship to indicate the direction the information flows.)';
  8510.             sTemp=L_Communicates_relationship_TEXT;
  8511.             break;
  8512.         case 'Complex_transition':
  8513.             L_Complex_transition_TEXT='(complex transition: In a statechart or activity diagram, a relationship between multiple source and/or target states or action states (a simple transition relates one source and one target state or activity).)';
  8514.             sTemp=L_Complex_transition_TEXT;
  8515.             break;
  8516.         case 'Component':
  8517.             L_Component_TEXT='(component: In component and deployment diagrams, a distributable unit of implementation in a system. For example, a component can represent a physical module of code (source, binary, or executable) or a business document in a human system.)';
  8518.             sTemp=L_Component_TEXT;
  8519.             break;
  8520.         case 'Component_1':
  8521.             L_Component_1_TEXT='(component: In the Process Engineering templates, a component represents a single physical object in the real world, such as a valve or a pipeline. In a process engineering diagram, each component is represented by a shape or multiple shapes.)';
  8522.             sTemp=L_Component_1_TEXT;
  8523.             break;
  8524.         case 'Component_diagram':
  8525.             L_Component_diagram_TEXT='(component diagram: An implementation diagram that shows the structure of the code itself. From a component diagram, you can learn about compiler and run-time dependencies between software components, such as source code files or DLLs.)';
  8526.             sTemp=L_Component_diagram_TEXT;
  8527.             break;
  8528.         case 'Composite_object':
  8529.             L_Composite_object_TEXT='(composite object: A high-level object made of tightly bound parts. A composite object is an instance of a composite class, which implies the composition aggregation between the class and its parts.)';
  8530.             sTemp=L_Composite_object_TEXT;
  8531.             break;
  8532.         case 'Composite_state':
  8533.             L_Composite_state_TEXT='(composite state: In a statechart diagram, a state that has been decomposed into concurrent (representing and relationships) or mutually exclusive (representing or relationships) substates.)';
  8534.             sTemp=L_Composite_state_TEXT;
  8535.             break;
  8536.         case 'Composition':
  8537.             L_Composition_TEXT='(composition: A form of aggregation that indicates that a part may belong to only one whole and that the lifetime of the whole determines the lifetime of the part. If the whole is deleted, so are its parts.)';
  8538.             sTemp=L_Composition_TEXT;
  8539.             break;
  8540.         case 'Conceptual_model':
  8541.             L_Conceptual_model_TEXT='(conceptual model: A tool used in the analysis phase of software development to help decompose a problem into individual concepts or objects and clarify the vocabulary of the domain.)';
  8542.             sTemp=L_Conceptual_model_TEXT;
  8543.             break;
  8544.         case 'configuration_context':
  8545.             L_configuration_context_TEXT='(configuration context: In the Active Directory solution, the configuration context stores information about the Active Directory forest. It contains a collection of sites, partitions, and subnets.)';
  8546.             sTemp=L_configuration_context_TEXT;
  8547.             break;
  8548.         case 'Connection_point':
  8549.             L_Connection_point_TEXT='(connection point: A point on a shape where a connection point can be glued. You can create new connection points inside, outside, or on the perimeter of a shape using the Connection Point tool. Each of a shape\'s connection points is marked with a blue X.)';
  8550.             sTemp=L_Connection_point_TEXT;
  8551.             break;
  8552.         case 'Connector':
  8553.             L_Connector_TEXT='(connector: Any one-dimensional (1-D) shape that can be glued between two shapes in a drawing to connect the shapes.)';
  8554.             sTemp=L_Connector_TEXT;
  8555.             break;
  8556.         case 'Constraint':
  8557.             L_Constraint_TEXT='(constraint: A specification for conditions and propositions that must be maintained as true for the system to be valid. Constraints are expressed as text within braces ({  }).)';
  8558.             sTemp=L_Constraint_TEXT;
  8559.             break;
  8560.         case 'Constraint_ORM':
  8561.             L_Constraint_ORM_TEXT='(constraint ORM: A rule that limits the instances allowed in one or more roles or that identifies a composite or nested object type. For example, an internal uniqueness constraint does not allow duplicate instances in the constrained role or roles.)';
  8562.             sTemp=L_Constraint_ORM_TEXT;
  8563.             break;
  8564.         case 'Container':
  8565.             L_Container_TEXT='(container: An OLE application in which you embed or link information. For example, if you insert a Visio drawing into a Word document, Word is the container application. A container application is also known as a client.)';
  8566.             sTemp=L_Container_TEXT;
  8567.             break;
  8568.         case 'Container_2':
  8569.             L_Container_2_TEXT='(container: An object that can have potential child or parent levels.)';
  8570.             sTemp=L_Container_2_TEXT;
  8571.             break;
  8572.         case 'Control':
  8573.             L_Control_TEXT='(control: An object you can place on a user form or a Visio drawing page that has its own set of properties, methods, and events, such as a toolbar button.)';
  8574.             sTemp=L_Control_TEXT;
  8575.             break;
  8576.         case 'Control_flow':
  8577.             L_Control_flow_TEXT='(control flow: A transition in an activity diagram. A control flow represents a relationship between two states or action states and indicates that an object in the first state will enter the second state and perform specified actions.)';
  8578.             sTemp=L_Control_flow_TEXT;
  8579.             break;
  8580.         case 'Control_handle':
  8581.             L_Control_handle_TEXT='(control handle: A handle that specifies unique behavior for certain shapes. For example, in some shapes you can use a control handle to reposition text on the drawing page. You can pause the pointer over a control handle to see what it does.)';
  8582.             sTemp=L_Control_handle_TEXT;
  8583.             break;
  8584.         case 'Control_point':
  8585.             L_Control_point_TEXT='(control point: (1) The circle that appears on a line segment or an arc segment when you select them with the pencil tool. Drag a control point to change the curve of an arc or ellipse. (2) A point that influences the curvature of a spline segment.)';
  8586.             sTemp=L_Control_point_TEXT;
  8587.             break;
  8588.         case 'Control_polygon':
  8589.             L_Control_polygon_TEXT='(control polygon: A series of straight line segments that connects all the control points of a single spline.)';
  8590.             sTemp=L_Control_polygon_TEXT;
  8591.             break;
  8592.         case 'Controller_application':
  8593.             L_Controller_application_TEXT='(controller application: In Automation, the application (such as your program) that uses the objects exposed by a provider application. The controller application creates instances of the objects and then sets their properties or invokes their methods.)';
  8594.             sTemp=L_Controller_application_TEXT;
  8595.             break;
  8596.         case 'Coordinates':
  8597.             L_Coordinates_TEXT='(coordinates: A pair of numbers that indicates the position of a point in relation to the origin of a shape, a group, or the page. The x-coordinate indicates the horizontal distance and the y-coordinate indicates the vertical distance of the point.)';
  8598.             sTemp=L_Coordinates_TEXT;
  8599.             break;
  8600.         case 'Creation_destruction_markers':
  8601.             L_Creation_destruction_markers_TEXT='(creation/destruction markers: In a collaboration diagram, markers used to indicate object roles and association roles, or links, that are created and destroyed during the operation.)';
  8602.             sTemp=L_Creation_destruction_markers_TEXT;
  8603.             break;
  8604.         case 'Crop':
  8605.             L_Crop_TEXT='(crop: To reduce an inserted object or picture. Although cropping appears to clip off parts of the object or picture, the clipped portions are retained in memory. Crop an object or picture by selecting it with the Crop tool and dragging one of its handles.)';
  8606.             sTemp=L_Crop_TEXT;
  8607.             break;
  8608.         case 'Crows_Foot':
  8609.             L_Crows_Foot_TEXT='(Crow\'s Foot: A specification language for describing data structures. You can use the Crow\'s Foot entity and relationship shapes to diagram the structure of databases.)';
  8610.             sTemp=L_Crows_Foot_TEXT;
  8611.             break;
  8612.         case 'Custom_color':
  8613.             L_Custom_color_TEXT='(custom color: A color in the Visio application that is stored with a shape as an RGB or HSL value rather than as an index to the document\'s color palette. A custom color is saved only with the shape to which it is applied.)';
  8614.             sTemp=L_Custom_color_TEXT;
  8615.             break;
  8616.         case 'Custom_property':
  8617.             L_Custom_property_TEXT='(custom property: Information about shapes in your drawings. Some Visio shapes come with custom properties already defined. You can edit or delete existing custom properties or create new ones.)';
  8618.             sTemp=L_Custom_property_TEXT;
  8619.             break;
  8620.         case 'Data_points':
  8621.             L_Data_points_TEXT='(data points: In the Charts And Graphs template. Control handles on the Line Graph shape that you can drag to change the values in the graph.)';
  8622.             sTemp=L_Data_points_TEXT;
  8623.             break;
  8624.         case 'Data_source':
  8625.             L_Data_source_TEXT='(data source: The information necessary to access a database, including the database location, the file name, and the name of the driver the database uses.)';
  8626.             sTemp=L_Data_source_TEXT;
  8627.             break;
  8628.         case 'Data_store_DFD_model':
  8629.             L_Data_store_DFD_model_TEXT='(data store. A repository of information. A line from a data store to a process indicates that data from the store is used by the process. A line from a process to a data store means that the process changes the information in the data store.)';
  8630.             sTemp=L_Data_store_DFD_model_TEXT;
  8631.             break;
  8632.         case 'Data_type':
  8633.             L_Data_type_TEXT='(data type: A description of the type or the number of characters that can be entered into a field. Restricting a field\'s data type reduces errors in your data entry.)';
  8634.             sTemp=L_Data_type_TEXT;
  8635.             break;
  8636.         case 'Data_type_2':
  8637.             L_Data_type_2_TEXT='(data type. An instance of the DataType metaclass defined in the UML metamodel. A data type declares a type of class attribute. That type is available as a string you can include when you define attributes for other elements in a model.)';
  8638.             sTemp=L_Data_type_2_TEXT;
  8639.             break;
  8640.         case 'Dataflow_DFD_model':
  8641.             L_Dataflow_DFD_model_TEXT='(dataflow: In a DFD model, an exchange of information between processes. Data flows represent discrete packets of data that flow into and out of processes.)';
  8642.             sTemp=L_Dataflow_DFD_model_TEXT;
  8643.             break;
  8644.         case 'Dataflow_diagram':
  8645.             L_Dataflow_diagram_TEXT='(dataflow diagram: A tool for functional analysis that shows the general flow of information through a system or program.)';
  8646.             sTemp=L_Dataflow_diagram_TEXT;
  8647.             break;
  8648.         case 'Decision':
  8649.             L_Decision_TEXT='(decision: In an activity diagram, a guard condition that indicates different possible transitions from an action state. If one of these transitions leads to another decision, that decision is represented with the traditional diamond shape.)';
  8650.             sTemp=L_Decision_TEXT;
  8651.             break;
  8652.         case 'Default_font':
  8653.             L_Default_font_TEXT='(default font: The font that the Visio program uses by default to display text included in a shape. The default font is displayed with angle brackets in the Font dialog box.)';
  8654.             sTemp=L_Default_font_TEXT;
  8655.             break;
  8656.         case 'Default_units':
  8657.             L_Default_units_TEXT='(default units: The units of measure used to display a value in a ShapeSheet cell if no units of measure are explicitly specified. Default drawing and page units are properties of a drawing page. Default angular and text units are application settings.)';
  8658.             sTemp=L_Default_units_TEXT;
  8659.             break;
  8660.         case 'Deferred_event':
  8661.             L_Deferred_event_TEXT='(deferred event: In a statechart or activity diagram, an event that must be deferred for later use while another activity is under way. You can show a deferred event for a state by including the event among the state\'s internal transitions.)';
  8662.             sTemp=L_Deferred_event_TEXT;
  8663.             break;
  8664.         case 'Dependency':
  8665.             L_Dependency_TEXT='(dependency: A relationship between two elements that indicates that changes to the target element may cause changes in the source element.)';
  8666.             sTemp=L_Dependency_TEXT;
  8667.             break;
  8668.         case 'Deployment_diagram':
  8669.             L_Deployment_diagram_TEXT='(deployment diagram: An implementation diagram that shows the structure of a run-time system. From it, you can learn about the physical relationships among software and hardware components and the distribution of components to processing nodes.)';
  8670.             sTemp=L_Deployment_diagram_TEXT;
  8671.             break;
  8672.         case 'Derived_element':
  8673.             L_Derived_element_TEXT='(derived element: An element, such as an attribute or association, that can be calculated or derived from other information. For example, an age attribute for the class Person can be derived if you know the Person\'s date of birth.)';
  8674.             sTemp=L_Derived_element_TEXT;
  8675.             break;
  8676.         case 'Destination_file':
  8677.             L_Destination_file_TEXT='(destination file: The file into which a linked or embedded object is inserted. The file that is used to create the object is the source file. When you change information in a destination file, the change is not made in the source file.)';
  8678.             sTemp=L_Destination_file_TEXT;
  8679.             break;
  8680.         case 'DGN':
  8681.             L_DGN_TEXT='(DGN: A format used by the Bentley MicroStation CAD program to store drawing files.)';
  8682.             sTemp=L_DGN_TEXT;
  8683.             break;
  8684.         case 'Digitally_signed':
  8685.             L_Digitally_signed_TEXT='(digitally signed: A digital signature is an electronic, encryption-based, security-enhanced stamp of authentication on a macro or document. This signature confirms that the macro or document originated from the signer and has not been altered.)';
  8686.             sTemp=L_Digitally_signed_TEXT;
  8687.             break;
  8688.         case 'Directory_Service':
  8689.             L_Directory_Service_TEXT='(Directory Service: An application that allows you to access a directory, which is a database of information about a network\'s resources, such as hardware, software, users, or policies.)';
  8690.             sTemp=L_Directory_Service_TEXT;
  8691.             break;
  8692.         case 'Discriminator':
  8693.             L_Discriminator_TEXT='(discriminator: A text label on a generalization path that indicates the name of a partition of the general class that the more specific class is in. The default discriminator is an empty string.)';
  8694.             sTemp=L_Discriminator_TEXT;
  8695.             break;
  8696.         case 'distribute':
  8697.             L_distribute_TEXT='(distribute: You can create an equal distance between the ends or centers of selected shapes. To do this, on the Shapes menu, point to Distribute Shapes. You also can align shapes to other shapes. On the Shapes menu, click Align Shapes.)';
  8698.             sTemp=L_distribute_TEXT;
  8699.             break;
  8700.         case 'Docked_stencil':
  8701.             L_Docked_stencil_TEXT='(docked stencil: A stencil that is attached to the side of the drawing window. By default, stencils are docked on the left side of the window. You can float stencils, or you can dock them on the right side, the top, or the bottom of the drawing window.)';
  8702.             sTemp=L_Docked_stencil_TEXT;
  8703.             break;
  8704.         case 'Document_library':
  8705.             L_Document_library_TEXT='(document library: A folder where a collection of files is shared and the files often use the same template. Each file in a library is associated with user-defined information that is displayed in the content listing for that library.)';
  8706.             sTemp=L_Document_library_TEXT;
  8707.             break;
  8708.         case 'Documentation_tab':
  8709.             L_Documentation_tab_TEXT='(Code tab: In the UML solution, a window that displays language-specific semantic errors associated with UML elements. Errors listed in the Code window are based on the language selected for code generation.)';
  8710.             sTemp=L_Documentation_tab_TEXT;
  8711.             break;
  8712.         case 'Domain_of_influence':
  8713.             L_Domain_of_influence_TEXT='(domain of influence: The portion of a spline, specified as a number of spline knots, whose curvature is influenced by a single control point.)';
  8714.             sTemp=L_Domain_of_influence_TEXT;
  8715.             break;
  8716.         case 'Drag_and_drop_drawing':
  8717.             L_Drag_and_drop_drawing_TEXT='(drag-and-drop drawing: Creating an instance of a master in a drawing by dragging the master from a stencil to the drawing.)';
  8718.             sTemp=L_Drag_and_drop_drawing_TEXT;
  8719.             break;
  8720.         case 'Drawing':
  8721.             L_Drawing_TEXT='(drawing: All the shapes on the foreground page together with all the shapes on optional background pages.)';
  8722.             sTemp=L_Drawing_TEXT;
  8723.             break;
  8724.         case 'Drawing_file':
  8725.             L_Drawing_file_TEXT='(drawing file: A Visio file with a .vsd extension that contains a drawing. To create a drawing file, on the File menu, point to New, and then click New Drawing, and start the drawing from scratch.)';
  8726.             sTemp=L_Drawing_file_TEXT;
  8727.             break;
  8728.         case 'Drawing_page':
  8729.             L_Drawing_page_TEXT='(drawing page: The page in a drawing window that contains a drawing. A page can be either a foreground or a background page. Each page has a size, which usually corresponds to a standard paper size, and it has a scale.)';
  8730.             sTemp=L_Drawing_page_TEXT;
  8731.             break;
  8732.         case 'Drawing_path':
  8733.             L_Drawing_path_TEXT='(Drawing path: The default location, which is the My Documents folder, where Visio drawings you create are stored.)';
  8734.             sTemp=L_Drawing_path_TEXT;
  8735.             break;
  8736.         case 'Drawing_scale':
  8737.             L_Drawing_scale_TEXT='(drawing scale: The ratio of distance on the printed page to distances in the real world. For example, a drawing scale of 1 cm = 1 m means that 1 centimeter on the printed page represents 1 meter in the real world.)';
  8738.             sTemp=L_Drawing_scale_TEXT;
  8739.             break;
  8740.         case 'Drawing_type':
  8741.             L_Drawing_type_TEXT='(drawing type: A Visio file (template) with a .vst extension that opens with the stencils, styles, and settings you need to create a particular type of drawing.)';
  8742.             sTemp=L_Drawing_type_TEXT;
  8743.             break;
  8744.         case 'Driver':
  8745.             L_Driver_TEXT='(driver: Software that enables the Facilities Management solution to communicate with data in the repository.)';
  8746.             sTemp=L_Driver_TEXT;
  8747.             break;
  8748.         case 'DWG':
  8749.             L_DWG_TEXT='(DWG: A standard format used by CAD programs (such as Autodesk AutoCAD) to store drawing files.)';
  8750.             sTemp=L_DWG_TEXT;
  8751.             break;
  8752.         case 'DXF':
  8753.             L_DXF_TEXT='(DXF: A standard ASCII or binary file format for importing and exporting files between most CAD programs. Acronym for Drawing Exchange Format.)';
  8754.             sTemp=L_DXF_TEXT;
  8755.             break;
  8756.         case 'Dynamic_Connector':
  8757.             L_Dynamic_Connector_TEXT='(dynamic connector: A one-dimensional (1-D) connector shape that changes its path to avoid crossing through two-dimensional (2-D) placeable shapes that lie between the two shapes the connector connects. (Also called a \"routable connector.\"))';
  8758.             sTemp=L_Dynamic_Connector_TEXT;
  8759.             break;
  8760.         case 'Dynamic_glue':
  8761.             L_Dynamic_glue_TEXT='(dynamic glue: A type of glue that allows the endpoint of a connector shape to move from one connection point to another as the connected shapes are moved.)';
  8762.             sTemp=L_Dynamic_glue_TEXT;
  8763.             break;
  8764.         case 'Eccentricity_handle':
  8765.             L_Eccentricity_handle_TEXT='(eccentricity handle: The circle that appears at each end of a dotted line when a control point of an elliptical arc is selected with the pencil tool. Drag to change the angle and magnitude of an arc\'s eccentricity.)';
  8766.             sTemp=L_Eccentricity_handle_TEXT;
  8767.             break;
  8768.         case 'Embed':
  8769.             L_Embed_TEXT='(embed: To insert a Visio drawing into another application\'s document (a container application) to establish a dynamic connection between the drawing and the other document.)';
  8770.             sTemp=L_Embed_TEXT;
  8771.             break;
  8772.         case 'Embedded_object':
  8773.             L_Embedded_object_TEXT='(embedded object: An object inserted into a destination file. Once embedded, the object becomes part of the destination file. When you double-click an embedded object, it opens in the program (source program) in which it was created.)';
  8774.             sTemp=L_Embedded_object_TEXT;
  8775.             break;
  8776.         case 'End_name':
  8777.             L_End_name_TEXT='(end name: A name that appears as a text string near the end of a binary association. It indicates the role played by the class attached to the association end, so each end can have its own end name. Also called role name.)';
  8778.             sTemp=L_End_name_TEXT;
  8779.             break;
  8780.         case 'End_Ports':
  8781.             L_End_Ports_TEXT='(end ports: A type of class port that defines the internal and external ports of an actor class. This symbol can appear only on the border of an actor class. An end port provides a link between structure and behavior.)';
  8782.             sTemp=L_End_Ports_TEXT;
  8783.             break;
  8784.         case 'Endpoint':
  8785.             L_Endpoint_TEXT='(endpoint: Either of the square handles that appear at the beginning or end of a selected line, arc, or other one-dimensional (1-D) shape.)';
  8786.             sTemp=L_Endpoint_TEXT;
  8787.             break;
  8788.         case 'Equivalence_at_boundaries':
  8789.             L_Equivalence_at_boundaries_TEXT='(equivalence of boundaries: The requirement that data flows are used consistently between top-level and detail pages. If you add a new data flow to a process that has a detail page, the new data flow must also be added to the detail page.)';
  8790.             sTemp=L_Equivalence_at_boundaries_TEXT;
  8791.             break;
  8792.         case 'Errors_tab':
  8793.             L_Errors_tab_TEXT='(Errors tab: In the UML solution, a window that displays semantic errors associated with UML elements. By double-clicking an error in the Errors tab, you can locate the icon or shape that represents the element containing the error.)';
  8794.             sTemp=L_Errors_tab_TEXT;
  8795.             break;
  8796.         case 'Event':
  8797.             L_Event_TEXT='(event: An occurrence in Visio, such as a change to a shape formula or the deletion of a page.)';
  8798.             sTemp=L_Event_TEXT;
  8799.             break;
  8800.         case 'Event_2':
  8801.             L_Event_2_TEXT='(event: In a statechart or activity diagram, an occurrence that triggers a transition. When in a given state or action state, an object waits for an event to go to a different state.)';
  8802.             sTemp=L_Event_2_TEXT;
  8803.             break;
  8804.         case 'Event_object':
  8805.             L_Event_object_TEXT='(Event object: A Visio object that you create from a stand-alone Microsoft Visual Basic, C, or C++ program to handle Visio events.)';
  8806.             sTemp=L_Event_object_TEXT;
  8807.             break;
  8808.         case 'Event_procedure':
  8809.             L_Event_procedure_TEXT='(event procedure: In a Microsoft Visual Basic program, code that is executed when an event occurs. For example, a button on a Visual Basic form usually has an event procedure to handle the Click event.)';
  8810.             sTemp=L_Event_procedure_TEXT;
  8811.             break;
  8812.         case 'Exception':
  8813.             L_Exception_TEXT='(Exception: A signal raised by behavioral features typically in case of execution faults. In the metamodel, Exception is derived from Signal.)';
  8814.             sTemp=L_Exception_TEXT;
  8815.             break;
  8816.         case 'Explicit_units':
  8817.             L_Explicit_units_TEXT='(explicit units: Units of measure specified as part of a number-unit pair so that the result is always displayed using the units specified. For example, the value \"3 mm\" always appears in a ShapeSheet window as \"3 mm.\")';
  8818.             sTemp=L_Explicit_units_TEXT;
  8819.             break;
  8820.         case 'Expression':
  8821.             L_Expression_TEXT='(expression: A combination of values, operators, functions, and sheet references that results in a value. A logical expression compares two values and yields a TRUE or FALSE result.)';
  8822.             sTemp=L_Expression_TEXT;
  8823.             break;
  8824.         case 'Extended_Property':
  8825.             L_Extended_Property_TEXT='(extended property: A property assigned to an object classified as user-defined. An extended property can be deleted from the object and does not need to contain values. Adding an extended property to an object does not affect all objects of the same type.)';
  8826.             sTemp=L_Extended_Property_TEXT;
  8827.             break;
  8828.         case 'Extends_relationship':
  8829.             L_Extends_relationship_TEXT='(Extends relationship: In a use case diagram, a relationship between two use cases that indicates that an instance of use case B, subject to conditions specified in the extension, may include the behavior specified by use case A.)';
  8830.             sTemp=L_Extends_relationship_TEXT;
  8831.             break;
  8832.         case 'Extensible':
  8833.             L_Extensible_TEXT='(extensible: An object to which you can add extended properties.)';
  8834.             sTemp=L_Extensible_TEXT;
  8835.             break;
  8836.         case 'Extension_points':
  8837.             L_Extension_points_TEXT='(extension points: A location within a use case at which an action sequence from another use case may be inserted. Within a use case, each extension point name must be unique. Extension points appear in a compartment at the bottom of the Use Case shape.)';
  8838.             sTemp=L_Extension_points_TEXT;
  8839.             break;
  8840.         case 'Facilities_data_source':
  8841.             L_Facilities_data_source_TEXT='(facilities data source: A data source file (.dsn) that points to a database, which is set up to contain organizational information and that has been successfully linked to a drawing by means of the Facilities Management Setup Wizard.)';
  8842.             sTemp=L_Facilities_data_source_TEXT;
  8843.             break;
  8844.         case 'Facilities_database':
  8845.             L_Facilities_database_TEXT='(facilities database: A database that Visio CAFM Explorer uses to track your asset information. Also called a repository.)';
  8846.             sTemp=L_Facilities_database_TEXT;
  8847.             break;
  8848.         case 'Field':
  8849.             L_Field_TEXT='(field: A placeholder in text that displays information such as dimensions, dates, and times. A field might display the date and time a drawing is printed, a shape\'s angle of rotation, or the result of a formula you write.)';
  8850.             sTemp=L_Field_TEXT;
  8851.             break;
  8852.         case 'Fill':
  8853.             L_Fill_TEXT='(fill: The color and pattern inside a closed shape. The default fill for Visio shapes is solid white.)';
  8854.             sTemp=L_Fill_TEXT;
  8855.             break;
  8856.         case 'Final_state':
  8857.             L_Final_state_TEXT='(final state: In a statechart or activity diagram, a representation of the completion of activity in the enclosing state or action state. The final state is indicated by a bull\'s eye. )';
  8858.             sTemp=L_Final_state_TEXT;
  8859.             break;
  8860.         case 'Fixed_grid':
  8861.             L_Fixed_grid_TEXT='(fixed grid: Grid lines on the drawing page that stay the same distance apart when you zoom in or zoom out of a drawing.)';
  8862.             sTemp=L_Fixed_grid_TEXT;
  8863.             break;
  8864.         case 'Floating_stencil':
  8865.             L_Floating_stencil_TEXT='(floating stencil: A stencil that appears in the size and location you choose. By default, stencils are docked on the left side of the drawing window. You can make stencils float, or you can dock them on the right side of the drawing window.)';
  8866.             sTemp=L_Floating_stencil_TEXT;
  8867.             break;
  8868.         case 'Foreground':
  8869.             L_Foreground_TEXT='(foreground: The top page of a drawing. Shapes on the foreground page appear in front of shapes on the background page and are not visible when you edit the background of the drawing.)';
  8870.             sTemp=L_Foreground_TEXT;
  8871.             break;
  8872.         case 'Forest':
  8873.             L_Forest_TEXT='(Forest: One or more Active Directory domains that are not necessariliy connected, but which share a common schema and configuration information.)';
  8874.             sTemp=L_Forest_TEXT;
  8875.             break;
  8876.         case 'Format':
  8877.             L_Format_TEXT='(format: The visual appearance of a shape (such as the thickness and color of its lines, the color and pattern inside the shape, and its font). You can change the format of a shape by applying a style or by changing its individual attributes.)';
  8878.             sTemp=L_Format_TEXT;
  8879.             break;
  8880.         case 'Format_picture':
  8881.             L_Format_picture_TEXT='(format picture: A set of symbols and abbreviations that Visio interprets and uses to format string output, such as in a custom text field formula.)';
  8882.             sTemp=L_Format_picture_TEXT;
  8883.             break;
  8884.         case 'Formula':
  8885.             L_Formula_TEXT='(formula: An expression that is entered in a ShapeSheet cell, which returns a value.)';
  8886.             sTemp=L_Formula_TEXT;
  8887.             break;
  8888.         case 'Formula_bar':
  8889.             L_Formula_bar_TEXT='(formula bar: The portion of the ShapeSheet window in which you enter a formula for the selected ShapeSheet cell. You can also enter formulas directly into a cell.)';
  8890.             sTemp=L_Formula_bar_TEXT;
  8891.             break;
  8892.         case 'freeform_curve':
  8893.             L_freeform_curve_TEXT='(freeform curve: A shape with curved segments. Also called a spline.)';
  8894.             sTemp=L_freeform_curve_TEXT;
  8895.             break;
  8896.         case 'Function':
  8897.             L_Function_TEXT='(function: A calculation tool used for a variety of purposes in a formula. Visio includes mathematical, trigonometric, geometric, event, date and time, color, logical, statistical, and other functions.)';
  8898.             sTemp=L_Function_TEXT;
  8899.             break;
  8900.         case 'Functional_Band_shape':
  8901.             L_Functional_Band_shape_TEXT='(Functional Band shape: Represents a functional unit, such as a department, in which process steps occur. You use either horizontal or vertical functional band shapes depending on the orientation you want for your diagram.)';
  8902.             sTemp=L_Functional_Band_shape_TEXT;
  8903.             break;
  8904.         case 'Generalization':
  8905.             L_Generalization_TEXT='(generalization: A relationship between a specific element and a general element, such that the specific element is fully consistent with the general element and includes additional information (such as attributes and associations).)';
  8906.             sTemp=L_Generalization_TEXT;
  8907.             break;
  8908.         case 'Geometry':
  8909.             L_Geometry_TEXT='(geometry: An arrangement of vertices and segments that define a path.)';
  8910.             sTemp=L_Geometry_TEXT;
  8911.             break;
  8912.         case 'Gesture_recognition':
  8913.             L_Gesture_recognition_TEXT='(gesture recognition: A feature of the Pencil tool. As you begin to move the mouse, Visio quickly calculates the path the mouse pointer travels. If the path of the mouse is straight, the Pencil tool draws a straight line segment.)';
  8914.             sTemp=L_Gesture_recognition_TEXT;
  8915.             break;
  8916.         case 'Glue':
  8917.             L_Glue_TEXT='(glue: A property of shapes that causes them to stay connected even when one of the shapes is moved. When you attach a connector to a shape, you glue the connector.)';
  8918.             sTemp=L_Glue_TEXT;
  8919.             break;
  8920.         case 'Grid':
  8921.             L_Grid_TEXT='(grid: Nonprinting horizontal and vertical lines that appear at regular intervals on the page.)';
  8922.             sTemp=L_Grid_TEXT;
  8923.             break;
  8924.         case 'Grid_lines':
  8925.             L_Grid_lines_TEXT='(grid lines: The faint vertical and horizontal lines that appear in the drawing window when the grid is turned on. You can use grid lines to help position shapes precisely.)';
  8926.             sTemp=L_Grid_lines_TEXT;
  8927.             break;
  8928.         case 'Grid_origin':
  8929.             L_Grid_origin_TEXT='(grid origin: The point that defines the layout of grid lines on the drawing page. A vertical grid line and a horizontal grid line pass through the grid origin, and all other grid lines are drawn at specified intervals from these reference lines.)';
  8930.             sTemp=L_Grid_origin_TEXT;
  8931.             break;
  8932.         case 'Group':
  8933.             L_Group_TEXT='(group: A shape composed of two or more shapes. You can move or size groups as a unit but group members retain their original appearance and properties.)';
  8934.             sTemp=L_Group_TEXT;
  8935.             break;
  8936.         case 'Group_Transition':
  8937.             L_Group_Transition_TEXT='(group transition: An outgoing transition segment with an outgoing arrow that begins on the state context and has no chained incoming transition.)';
  8938.             sTemp=L_Group_Transition_TEXT;
  8939.             break;
  8940.         case 'Group_window':
  8941.             L_Group_window_TEXT='(group window: A drawing window you can open to edit individual components of a group. The group appears unrotated in the group window even if it is rotated on the drawing page.)';
  8942.             sTemp=L_Group_window_TEXT;
  8943.             break;
  8944.         case 'Guard':
  8945.             L_Guard_TEXT='(guard: In a statechart or activity diagram, a condition that specifies when an event can take place. Whenever its event fires, a guard is evaluated only once.)';
  8946.             sTemp=L_Guard_TEXT;
  8947.             break;
  8948.         case 'Guide_guide_point':
  8949.             L_Guide_guide_point_TEXT='(guide, guide point: A reference line you can drag onto the drawing page to position shapes precisely. Drag guides from the rulers, and the guide point from the upper-left corner of the drawing window.)';
  8950.             sTemp=L_Guide_guide_point_TEXT;
  8951.             break;
  8952.         case 'Handle':
  8953.             L_Handle_TEXT='(handle: A control that appears when you select a shape. You can use handles to alter a shape. Handles vary with the type of shape and the tool you use to select it.)';
  8954.             sTemp=L_Handle_TEXT;
  8955.             break;
  8956.         case 'History_state_indicator':
  8957.             L_History_state_indicator_TEXT='(history state indicator: In a statechart diagram, a representation of the substate last visited. When a transition to the indicator fires, an object resumes the state it last had at the same level as the history indicator.)';
  8958.             sTemp=L_History_state_indicator_TEXT;
  8959.             break;
  8960.         case 'IDEF1X':
  8961.             L_IDEF1X_TEXT='(IDEF1X: A specification language for describing data structures. Visio includes an IDEF1X template. You can use the IDEF1X entity and relationship shapes to diagram the structure of databases.)';
  8962.             sTemp=L_IDEF1X_TEXT;
  8963.             break;
  8964.         case 'Image_map':
  8965.             L_Image_map_TEXT='(image map: A type of graphic used on the World Wide Web. An image map is divided into different regions, some of which are associated with links.)';
  8966.             sTemp=L_Image_map_TEXT;
  8967.             break;
  8968.         case 'Implementation_class':
  8969.             L_Implementation_class_TEXT='(implementation class: In a static structure diagram, a class that defines the physical data structures and procedures of an object as implemented in a traditional programming language, such as C++. An object may have only one implementation class.)';
  8970.             sTemp=L_Implementation_class_TEXT;
  8971.             break;
  8972.         case 'Implicit_units':
  8973.             L_Implicit_units_TEXT='(implicit units: Units of measure specified as part of a number-unit pair in which the result is displayed using a specified measurement system, which may not coincide with the units originally entered.)';
  8974.             sTemp=L_Implicit_units_TEXT;
  8975.             break;
  8976.         case 'In_place':
  8977.             L_In_place_TEXT='(in place: Running a program from inside another program. When you work in place, the source program\'s menus and toolbars appear and replace some of the current program\'s menus and toolbars.)';
  8978.             sTemp=L_In_place_TEXT;
  8979.             break;
  8980.         case 'Include_product_Enterprise':
  8981.             L_Include_product_Enterprise_TEXT='(Documentation tab. A window that displays documentation (in the form of a tagged value) for a selected UML element. You can add documentation to a UML element by selecting the shape that represents the element and typing in the Documentation window.)';
  8982.             sTemp=L_Include_product_Enterprise_TEXT;
  8983.             break;
  8984.         case 'Index':
  8985.             L_Index_TEXT='(index: A number corresponding to the position of a color in the Color dialog box. The index is displayed to the left of the color. Visio records a shape\'s color as the index for that color.)';
  8986.             sTemp=L_Index_TEXT;
  8987.             break;
  8988.         case 'Inherited_formula':
  8989.             L_Inherited_formula_TEXT='(inherited formula: A formula that is stored in a style or a master but used by an instance as if the formula were stored locally with the shape. A change to a formula in the style or master affects all shapes that inherit the formula.)';
  8990.             sTemp=L_Inherited_formula_TEXT;
  8991.             break;
  8992.         case 'Initial_state':
  8993.             L_Initial_state_TEXT='(initial state: In a statechart or activity diagram, a representation of the initial state of an object before any events included in the diagram have acted upon it. An initial state is indicated by a solid filled circle.)';
  8994.             sTemp=L_Initial_state_TEXT;
  8995.             break;
  8996.         case 'Insertion_point':
  8997.             L_Insertion_point_TEXT='(insertion point: The blinking vertical line that appears in text when you select a shape with the text tool and click the text with the mouse. Text you type appears at the insertion point.)';
  8998.             sTemp=L_Insertion_point_TEXT;
  8999.             break;
  9000.         case 'Installation_folder':
  9001.             L_Installation_folder_TEXT='(installation folder: The location where Visio is installed; the default folder location is Program Files\\Microsoft Office\\Visio11.)';
  9002.             sTemp=L_Installation_folder_TEXT;
  9003.             break;
  9004.         case 'Instance':
  9005.             L_Instance_TEXT='(instance: (1) A copy of a master, which you create by dragging the master from a stencil to a drawing. (2) A running image of a Windows application.)';
  9006.             sTemp=L_Instance_TEXT;
  9007.             break;
  9008.         case 'Instance_1':
  9009.             L_Instance_1_TEXT='(instance: A specific, concrete variation of a generic, abstract descriptor. For example, an object is an instance of a class, a link is an instance of an association, a value is an instance of a parameter, and a call is an instance of an operation.)';
  9010.             sTemp=L_Instance_1_TEXT;
  9011.             break;
  9012.         case 'Intelligent_tag':
  9013.             L_Intelligent_tag_TEXT='(intelligent tag: In the Process Engineering templates, a tag that contains information about a component, such as the line size of a pipeline.)';
  9014.             sTemp=L_Intelligent_tag_TEXT;
  9015.             break;
  9016.         case 'Interaction':
  9017.             L_Interaction_TEXT='(interaction: A pattern or sequence of message exchanges that accomplishes a purpose, such as performing an operation. Objects in a collaboration interact by exchanging messages. Messages can be signals or calls and can include conditions and time events.)';
  9018.             sTemp=L_Interaction_TEXT;
  9019.             break;
  9020.         case 'Interface':
  9021.             L_Interface_TEXT='(interface: Specifies the externally visible operations of a class, component, package, or other element without specifying internal structure. An interface has only operations but no attributes, states, or associations.)';
  9022.             sTemp=L_Interface_TEXT;
  9023.             break;
  9024.         case 'Interface_DFD_model':
  9025.             L_Interface_DFD_model_TEXT='(interface (DFD model): In a DFD model, an external user of the information system that can originate or receive data flows or data stores.)';
  9026.             sTemp=L_Interface_DFD_model_TEXT;
  9027.             break;
  9028.         case 'Internal_SelfTransition':
  9029.             L_Internal_SelfTransition_TEXT='(internal self-transition: A transition segment that begins and ends on the same state context, and that has neither a chained incoming transaction nor a chained outgoing transaction. This transition is a combination of the group and history transitions.)';
  9030.             sTemp=L_Internal_SelfTransition_TEXT;
  9031.             break;
  9032.         case 'Internal_units':
  9033.             L_Internal_units_TEXT='(internal units: The units of measure that Visio uses internally to store dimensional values. The Visio application\'s internal units are inches for linear measurements and radians for angular measurements.)';
  9034.             sTemp=L_Internal_units_TEXT;
  9035.             break;
  9036.         case 'Item':
  9037.             L_Item_TEXT='(item: A single object for which you can track properties. An item is represented in Visio CAFM Explorer by an icon inside a folder.)';
  9038.             sTemp=L_Item_TEXT;
  9039.             break;
  9040.         case 'Jump':
  9041.             L_Jump_TEXT='(jump: A hyperlink between a shape or drawing page and another page in the drawing file, a file in another program, or an Internet site. You can right-click the shape or drawing page to \"jump\" to the destination.)';
  9042.             sTemp=L_Jump_TEXT;
  9043.             break;
  9044.         case 'Junction_shape':
  9045.             L_Junction_shape_TEXT='(Junction shape: In Process Engineering, the shape used to connect pipelines when one pipeline is split by another pipeline. The default junction shape is Junction. However, you can specify any shape on the document stencil as a junction.)';
  9046.             sTemp=L_Junction_shape_TEXT;
  9047.             break;
  9048.         case 'Keyword':
  9049.             L_Keyword_TEXT='(keyword: A characteristic word, phrase, or code that is stored in a key field and is used to conduct sorting or searching operations on records. You type a keyword in the Find or Index box to locate specific information in a Help file.)';
  9050.             sTemp=L_Keyword_TEXT;
  9051.             break;
  9052.         case 'Layer':
  9053.             L_Layer_TEXT='(layer: A named category of shapes. You can organize shapes in your drawing by assigning them to layers. You can selectively view, edit, print, or lock shapes on layers.)';
  9054.             sTemp=L_Layer_TEXT;
  9055.             break;
  9056.         case 'Layer_Export_Connections':
  9057.             L_Layer_Export_Connections_TEXT='(layer/export connections: (1) A layer connection between one or more service access points (SAPs) or service provision points (SPPs); (2) An export connection in which an SPP is exported through a containing actor.)';
  9058.             sTemp=L_Layer_Export_Connections_TEXT;
  9059.             break;
  9060.         case 'Level':
  9061.             L_Level_TEXT='(level: A named category of shapes in a Bentley MicroStation .dgn file. You can insert MicroStation drawings in a Visio drawing and selectively view levels in the inserted drawing.)';
  9062.             sTemp=L_Level_TEXT;
  9063.             break;
  9064.         case 'Link':
  9065.             L_Link_TEXT='(link: To establish a dynamic connection between an object in a Visio drawing and another program\'s file. When the original file changes, you can update the linked file so that the most current version appears in the linked file.)';
  9066.             sTemp=L_Link_TEXT;
  9067.             break;
  9068.         case 'Link_2':
  9069.             L_Link_2_TEXT='(link: An instance of an association. A link represents references between objects. It can be binary, n-ary, or reflexive.)';
  9070.             sTemp=L_Link_2_TEXT;
  9071.             break;
  9072.         case 'Linked_object':
  9073.             L_Linked_object_TEXT='(linked object: Information that is created in one file (the source file) and inserted into another file (the destination file) while maintaining a connection between the two files. The linked object can be updated when the source file is updated.)';
  9074.             sTemp=L_Linked_object_TEXT;
  9075.             break;
  9076.         case 'Local_coordinates':
  9077.             L_Local_coordinates_TEXT='(local coordinates: The coordinate system whose origin is the lower-left corner of a shape\'s width-height box. The geometry of a shape is expressed in local coordinates.)';
  9078.             sTemp=L_Local_coordinates_TEXT;
  9079.             break;
  9080.         case 'Local_formatting':
  9081.             L_Local_formatting_TEXT='(local formatting: Individual formatting attributes such as line width, fill color, or font size, that you apply to a selected shape by using a command on the Format menu, such as Line, Fill, or Text.)';
  9082.             sTemp=L_Local_formatting_TEXT;
  9083.             break;
  9084.         case 'Local_formula':
  9085.             L_Local_formula_TEXT='(local formula: A formula that is stored in a cell of a shape instead of being inherited from a master or a style. A local formula overrides changes to the corresponding cell in the master of which the shape is an instance. Also called local override.)';
  9086.             sTemp=L_Local_formula_TEXT;
  9087.             break;
  9088.         case 'Local_stencil':
  9089.             L_Local_stencil_TEXT='(document stencil: A stencil stored in a drawing file, which contains an inventory of the masters used in all of the drawings in the file. Masters on the document stencil are linked to their instances in the drawings.)';
  9090.             sTemp=L_Local_stencil_TEXT;
  9091.             break;
  9092.         case 'Lock':
  9093.             L_Lock_TEXT='(lock: A setting that limits the ways that users can change a shape. For example, a lock on a selection handle prevents the user from resizing a shape using the selection handle.)';
  9094.             sTemp=L_Lock_TEXT;
  9095.             break;
  9096.         case 'Macro':
  9097.             L_Macro_TEXT='(macro: (1) A Visual Basic for Applications program that extends Visio through Automation;  (2) A procedure that takes no arguments and is contained in a module in a project in a Visio template, stencil, or drawing.)';
  9098.             sTemp=L_Macro_TEXT;
  9099.             break;
  9100.         case 'Mandatory_constraint':
  9101.             L_Mandatory_constraint_TEXT='(mandatory constraint: A constraint that requires every instance of an object type\'s population to play that role. With a disjunctive mandatory role constraint, each member of the object type\'s population must play at least one of the roles indicated.)';
  9102.             sTemp=L_Mandatory_constraint_TEXT;
  9103.             break;
  9104.         case 'Mandatory_Property':
  9105.             L_Mandatory_Property_TEXT='(mandatory property: A property that requires a value when it exists as an object in the Directory Navigator and in the diagram. Mandatory properties that are defined for a class cannot be deleted.)';
  9106.             sTemp=L_Mandatory_Property_TEXT;
  9107.             break;
  9108.         case 'Master_shape':
  9109.             L_Master_shape_TEXT='(master: A shape on a stencil that you use repeatedly to create drawings. When you drag a shape from a stencil onto the drawing page, the shape becomes an instance of that master.)';
  9110.             sTemp=L_Master_shape_TEXT;
  9111.             break;
  9112.         case 'Measurement_unit':
  9113.             L_Measurement_unit_TEXT='(measurement unit: Measurement units are sizes in the real world, and page units are sizes on the printed page. For example, in an architectural drawing that uses the scale 1 cm = 1 m, meter is the measurement unit and centimeter is the page unit.)';
  9114.             sTemp=L_Measurement_unit_TEXT;
  9115.             break;
  9116.         case 'Message_flow':
  9117.             L_Message_flow_TEXT='(message flow: In a collaboration diagram, a labeled arrow near the association role, or link, that connects two object roles indicates that a message is sent from one object to another.)';
  9118.             sTemp=L_Message_flow_TEXT;
  9119.             break;
  9120.         case 'Message_label':
  9121.             L_Message_label_TEXT='(message label: An arrow label that indicates the message sent, its arguments and return values, and the sequencing of the message within the larger interaction (including call nesting, iteration, branching, concurrency, and synchronization).)';
  9122.             sTemp=L_Message_label_TEXT;
  9123.             break;
  9124.         case 'Message_sequence_diagram':
  9125.             L_Message_sequence_diagram_TEXT='(message: In a sequence diagram, a communication between objects that conveys information and results in an action. A message is represented by a horizontal arrow.)';
  9126.             sTemp=L_Message_sequence_diagram_TEXT;
  9127.             break;
  9128.         case 'Metaclass':
  9129.             L_Metaclass_TEXT='(metaclass: In a static structure diagram, a class whose instances are classes. It is shown in UML notation as a class with the stereotype \"metaclass\".)';
  9130.             sTemp=L_Metaclass_TEXT;
  9131.             break;
  9132.         case 'Metafile':
  9133.             L_Metafile_TEXT='(metafile: A file that stores an image as graphical objects (lines, circles, polygons) rather than as pixels. Metafiles preserve an image more accurately than pixels when the image is resized. There are two types of metafiles, standard and enhanced.)';
  9134.             sTemp=L_Metafile_TEXT;
  9135.             break;
  9136.         case 'Mirror_file':
  9137.             L_Mirror_file_TEXT='(mirror file: A file separate from your database model diagram in which you can save the code from your model.)';
  9138.             sTemp=L_Mirror_file_TEXT;
  9139.             break;
  9140.         case 'Model':
  9141.             L_Model_TEXT='(model: An abstraction of a modeled system that specifies the modeled system from a certain viewpoint and at a certain level of abstraction.)';
  9142.             sTemp=L_Model_TEXT;
  9143.             break;
  9144.         case 'Model_space':
  9145.             L_Model_space_TEXT='(model space: In a CAD drawing, the primary drawing workspace in which a drafter creates a three-dimensional drawing.)';
  9146.             sTemp=L_Model_space_TEXT;
  9147.             break;
  9148.         case 'Modeless_activity':
  9149.             L_Modeless_activity_TEXT='(modeless activity: A program activity that does not terminate when control returns to the Visio program. For example, an add-on may open a modeless window, which remains open after the add-on terminates.)';
  9150.             sTemp=L_Modeless_activity_TEXT;
  9151.             break;
  9152.         case 'Modifed_Actor_Reference':
  9153.             L_Modifed_Actor_Reference_TEXT='(modified actor reference: An actor reference that is modified to indicate different properties.)';
  9154.             sTemp=L_Modifed_Actor_Reference_TEXT;
  9155.             break;
  9156.         case 'Module':
  9157.             L_Module_TEXT='(module: In a Microsoft Visual Basic or Viusal Basic for Applications (VBA) project, code that is a set of declarations followed by procedures. A standard module contains only procedure, type, and data declarations and definitions.)';
  9158.             sTemp=L_Module_TEXT;
  9159.             break;
  9160.         case 'Multi_object':
  9161.             L_Multi_object_TEXT='(multi-object: In a collaboration diagram, a set of object roles on the \"many\" end of an association role. Using a multi-object shows that an operation addresses an entire set rather than a single object within the set.)';
  9162.             sTemp=L_Multi_object_TEXT;
  9163.             break;
  9164.         case 'MultiLanguage_Pack':
  9165.             L_MultiLanguage_Pack_TEXT='(MultiLanguage Pack: Provides the translated text for the user interface and Help for Visio.)';
  9166.             sTemp=L_MultiLanguage_Pack_TEXT;
  9167.             break;
  9168.         case 'Multiplicity':
  9169.             L_Multiplicity_TEXT='(multiplicity: The number of times a spline knot is repeated.)';
  9170.             sTemp=L_Multiplicity_TEXT;
  9171.             break;
  9172.         case 'Multiplicity_2':
  9173.             L_Multiplicity_2_TEXT='(multiplicity: The number of objects that can participate in a particular relationship, expressed as a single number or a range from the lower to the upper limit. The most common multiplicities are 1, * (which means 0..infinity), and 0..1.)';
  9174.             sTemp=L_Multiplicity_2_TEXT;
  9175.             break;
  9176.         case 'Naming_properties':
  9177.             L_Naming_properties_TEXT='(naming properties: The property or properties used to determine how the values for an object\'s name are displayed in the Directory Navigator and in the directory diagram.)';
  9178.             sTemp=L_Naming_properties_TEXT;
  9179.             break;
  9180.         case 'NAry_Association':
  9181.             L_NAry_Association_TEXT='(n-ary association: In a static structure diagram, an association among three or more classes (a single class may appear more than once). Each instance of the association is an ordered set of values from the respective classes.)';
  9182.             sTemp=L_NAry_Association_TEXT;
  9183.             break;
  9184.         case 'Natural_language':
  9185.             L_Natural_language_TEXT='(natural language: A search method that lets you direct your search using conversational language. This allows you to give search instructions such as \"Find all appointments for today.\")';
  9186.             sTemp=L_Natural_language_TEXT;
  9187.             break;
  9188.         case 'Navigability':
  9189.             L_Navigability_TEXT='(navigability: From a polygon to a point, indicates that the polygon can tell you about all of its points, but the point cannot tell you about the polygon. On an association, navigability is indicated by an arrowhead.)';
  9190.             sTemp=L_Navigability_TEXT;
  9191.             break;
  9192.         case 'Network_place':
  9193.             L_Network_place_TEXT='(network place: A folder on a network file or Web server, or Microsoft Exchange 2000 server. Create a shortcut to a network place to work with files there. Some network places, such as document libraries, have features not available with local folders.)';
  9194.             sTemp=L_Network_place_TEXT;
  9195.             break;
  9196.         case 'Node':
  9197.             L_Node_TEXT='(node: In a deployment implementation diagram, a run-time physical object that represents a processing resource. Nodes are usually computing devices but can also represent human resources or mechanical processing resources.)';
  9198.             sTemp=L_Node_TEXT;
  9199.             break;
  9200.         case 'Nonperiodic_spline':
  9201.             L_Nonperiodic_spline_TEXT='(nonperiodic spline: A spline with defined endpoints. If a spline\'s begin point and end point coincide, the spline is closed.)';
  9202.             sTemp=L_Nonperiodic_spline_TEXT;
  9203.             break;
  9204.         case 'Note':
  9205.             L_Note_TEXT='(note: A diagram comment that has no semantic influence on the model elements. To add text to a Note shape, double-click the shape, and under Documentation, type the text you want, and then click OK.)';
  9206.             sTemp=L_Note_TEXT;
  9207.             break;
  9208.         case 'Nudge':
  9209.             L_Nudge_TEXT='(nudge: To move a shape a small amount using the arrow keys. Select the shape, and then click the up, down, right, or left arrow key. (Make sure that the SCROLL LOCK key is turned off.))';
  9210.             sTemp=L_Nudge_TEXT;
  9211.             break;
  9212.         case 'Number_unit_pair':
  9213.             L_Number_unit_pair_TEXT='(number unit pair: An expression that includes a number and a corresponding dimension. For example, \"1 cm\" is a number-unit pair.)';
  9214.             sTemp=L_Number_unit_pair_TEXT;
  9215.             break;
  9216.         case 'Object':
  9217.             L_Object_TEXT='(object: Information created in another application and imported, embedded, or linked in a Visio drawing. The term object is used to refer to objects from other applications and OLE objects.)';
  9218.             sTemp=L_Object_TEXT;
  9219.             break;
  9220.         case 'Object_2':
  9221.             L_Object_2_TEXT='(object: Represents a view of a directory service class. Objects represent specific network resources and have values assigned to their properties.)';
  9222.             sTemp=L_Object_2_TEXT;
  9223.             break;
  9224.         case 'Object_flow':
  9225.             L_Object_flow_TEXT='(object flow: In an activity diagram, a dashed arrow that indicates that an object is input or output by an action. An object flow arrow connects an object flow state either to a control flow arrow or to an action state.)';
  9226.             sTemp=L_Object_flow_TEXT;
  9227.             break;
  9228.         case 'Object_flow_state':
  9229.             L_Object_flow_state_TEXT='(object flow state: In an activity diagram, defines an object flow between actions. An object flow state signifies the availability of an instance of a classifier in a given state, usually as the result of an operation.)';
  9230.             sTemp=L_Object_flow_state_TEXT;
  9231.             break;
  9232.         case 'Object_in_state':
  9233.             L_Object_in_state_TEXT='(object in state: In an activity diagram, an object that is manipulated by a number of successive activities. Each appearance of the object indicates a different phase in its life.)';
  9234.             sTemp=L_Object_in_state_TEXT;
  9235.             break;
  9236.         case 'Object_lifeline':
  9237.             L_Object_lifeline_TEXT='(object lifeline: In a sequence diagram, a representation of the existence of an object at a particular time. If the object is created or destroyed during the time period the diagram represents, then the lifeline stops or starts at the appropriate point.)';
  9238.             sTemp=L_Object_lifeline_TEXT;
  9239.             break;
  9240.         case 'Object_linking_and_embedding_OLE':
  9241.             L_Object_linking_and_embedding_OLE_TEXT='(OLE: A Windows protocol that makes it possible to embed an object created in one Windows application into a document created in a different Windows application, or to link an object to a file that contains the original object.)';
  9242.             sTemp=L_Object_linking_and_embedding_OLE_TEXT;
  9243.             break;
  9244.         case 'Object_UML':
  9245.             L_Object_UML_TEXT='(object (UML): A representation of a particular instance of a class. An object has a name, which is underlined to indicate an instance-level element, and attributes. Objects usually appear in conceptual models where they represent real-world concepts.)';
  9246.             sTemp=L_Object_UML_TEXT;
  9247.             break;
  9248.         case 'ODBC_Open_Database_Connectivity':
  9249.             L_ODBC_Open_Database_Connectivity_TEXT='(ODBC: A standard interface that allows applications to access, view, and modify data from a variety of databases. Many database applications, including Access 7.0, Microsoft SQL Server, and Oracle SQL Server, are ODBC-compliant.)';
  9250.             sTemp=L_ODBC_Open_Database_Connectivity_TEXT;
  9251.             break;
  9252.         case 'OffPage_Reference_shape':
  9253.             L_OffPage_Reference_shape_TEXT='(Off-Page Reference shape: A 2-D shape that you can use in large flowchart diagrams to link to another page in the drawing.)';
  9254.             sTemp=L_OffPage_Reference_shape_TEXT;
  9255.             break;
  9256.         case 'Offset':
  9257.             L_Offset_TEXT='(offset: For a specified line or curve, the Visio program implements the offset as a pair of lines that are equidistant from the original line or curve.)';
  9258.             sTemp=L_Offset_TEXT;
  9259.             break;
  9260.         case 'One_dimensional_shape':
  9261.             L_One_dimensional_shape_TEXT='(1-D shape: Either a straight line you draw using Visio drawing tools or a shape that has a beginning point and ending point and can be glued between two shapes to connect them.)';
  9262.             sTemp=L_One_dimensional_shape_TEXT;
  9263.             break;
  9264.         case 'open_shape':
  9265.             L_open_shape_TEXT='(open shape: A shape such as a line, arc, or zigzag. You can format an open shape with line patterns and ends, such as by changing a solid line to a dashed line and adding an arrow to one end.)';
  9266.             sTemp=L_open_shape_TEXT;
  9267.             break;
  9268.         case 'Operation':
  9269.             L_Operation_TEXT='(operation: A service that an instance of a class may be requested to perform. The behavior of a class is represented by a set of operations. Each operation has a name and a list of arguments.)';
  9270.             sTemp=L_Operation_TEXT;
  9271.             break;
  9272.         case 'Optional_Property':
  9273.             L_Optional_Property_TEXT='(optional property: A property that does not require a value when the class it applies to exists as an object in the Directory Navigator and in the directory diagram. Optional properties defined for a class cannot be deleted.)';
  9274.             sTemp=L_Optional_Property_TEXT;
  9275.             break;
  9276.         case 'OR_constraint':
  9277.             L_OR_constraint_TEXT='(OR constraint: An indicator of a situation in which any instance of a class can participate in only one association at one time. The constraint is shown as a dashed line connecting two or more associations, which must have a class in common.)';
  9278.             sTemp=L_OR_constraint_TEXT;
  9279.             break;
  9280.         case 'Origin':
  9281.             L_Origin_TEXT='(origin: The lower-left corner of the selection rectangle of a shape, of a group, or of the drawing page. The x- and y-coordinates of the origin are always 0,0.)';
  9282.             sTemp=L_Origin_TEXT;
  9283.             break;
  9284.         case 'Orthogonal':
  9285.             L_Orthogonal_TEXT='(orthogonal: Intersecting or lying at right angles. You can rotate a Visio drawing page so that every shape in your drawing, regardless of the angle at which it is drawn, can be drawn orthogonally.)';
  9286.             sTemp=L_Orthogonal_TEXT;
  9287.             break;
  9288.         case 'Package':
  9289.             L_Package_TEXT='(package: A grouping of model elements represented in the UML by a symbol that resembles a manila file folder. Each element in a system can be owned by only one package, and one package can be nested in another.)';
  9290.             sTemp=L_Package_TEXT;
  9291.             break;
  9292.         case 'Page':
  9293.             L_Page_TEXT='(page: The printable area in a drawing window that contains a drawing. A page can be either a foreground or a background page. Each page has a size, which usually corresponds to a standard paper size, and a scale.)';
  9294.             sTemp=L_Page_TEXT;
  9295.             break;
  9296.         case 'Page_coordinates':
  9297.             L_Page_coordinates_TEXT='(page coordinates: The coordinate system whose origin is the lower-left corner of a drawing page.)';
  9298.             sTemp=L_Page_coordinates_TEXT;
  9299.             break;
  9300.         case 'Page_orientation':
  9301.             L_Page_orientation_TEXT='(page orientation: To print a drawing, you can choose a page orientation of portrait (vertical) or landscape (horizontal). In portrait mode, a document prints across the narrower dimension of a rectangular sheet of paper.)';
  9302.             sTemp=L_Page_orientation_TEXT;
  9303.             break;
  9304.         case 'Page_sheet':
  9305.             L_Page_sheet_TEXT='(page sheet: A ShapeSheet that represents a page.)';
  9306.             sTemp=L_Page_sheet_TEXT;
  9307.             break;
  9308.         case 'Page_units':
  9309.             L_Page_units_TEXT='(page units: Sizes or distances on the printed page.  For example, in an architectural drawing that uses the scale 1 cm = 1 m, centimeter is the page unit. The ratio of page units to measurement units is the drawing scale.)';
  9310.             sTemp=L_Page_units_TEXT;
  9311.             break;
  9312.         case 'Pan':
  9313.             L_Pan_TEXT='(pan: To move an OLE object with the crop tool by holding down the left mouse button and shifting the object within the object\'s border.)';
  9314.             sTemp=L_Pan_TEXT;
  9315.             break;
  9316.         case 'Paper_space':
  9317.             L_Paper_space_TEXT='(paper space: In a CAD drawing, a two-dimensional workspace analogous to a sheet of paper in which a drafter can arrange different views of a 3-D drawing.)';
  9318.             sTemp=L_Paper_space_TEXT;
  9319.             break;
  9320.         case 'Parameter':
  9321.             L_Parameter_TEXT='(parameter: An unbound variable that can be changed, passed, or returned. A parameter can include a name, type, and direction of communication. Parameters are used to specify operations, messages, events, templates, and more.)';
  9322.             sTemp=L_Parameter_TEXT;
  9323.             break;
  9324.         case 'Parameterized_class':
  9325.             L_Parameterized_class_TEXT='(parameterized class: In a static structure diagram, a template that describes a class with one or more unbound formal parameters. It defines a family of classes, each of which is specified by binding the parameters to actual values.)';
  9326.             sTemp=L_Parameterized_class_TEXT;
  9327.             break;
  9328.         case 'Parametric':
  9329.             L_Parametric_TEXT='(parametric: The ability of a Visio shape to adjust its geometry and other attributes according to the values of certain parameters.)';
  9330.             sTemp=L_Parametric_TEXT;
  9331.             break;
  9332.         case 'Parent':
  9333.             L_Parent_TEXT='(parent: The group that contains a shape is the shape\'s parent. If the shape is not in a group, its parent is the page.)';
  9334.             sTemp=L_Parent_TEXT;
  9335.             break;
  9336.         case 'Partition':
  9337.             L_Partition_TEXT='(partition: A distinct section of data in a Novell Directory Service (NDS) tree. It must contain at least one parent object and zero or more child objects in a hierarchical structure.)';
  9338.             sTemp=L_Partition_TEXT;
  9339.             break;
  9340.         case 'Paste':
  9341.             L_Paste_TEXT='(paste: To insert information from the Clipboard into a Visio drawing or another Windows application.)';
  9342.             sTemp=L_Paste_TEXT;
  9343.             break;
  9344.         case 'Pasteboard':
  9345.             L_Pasteboard_TEXT='(pasteboard: The area that surrounds a page in the drawing window. You can store shapes on the pasteboard. Each page has its own pasteboard.)';
  9346.             sTemp=L_Pasteboard_TEXT;
  9347.             break;
  9348.         case 'Path':
  9349.             L_Path_TEXT='(path: A series of contiguous line or arc segments in a shape. A shape can have more than one path.)';
  9350.             sTemp=L_Path_TEXT;
  9351.             break;
  9352.         case 'Patterns':
  9353.             L_Patterns_TEXT='(patterns: Principles that guide developers as they assign responsibilities to software classes and design system behavior. They are most useful when creating collaboration diagrams where messages imply responsibility.)';
  9354.             sTemp=L_Patterns_TEXT;
  9355.             break;
  9356.         case 'Periodic_spline':
  9357.             L_Periodic_spline_TEXT='(periodic spline: A closed spline with no defined endpoints.)';
  9358.             sTemp=L_Periodic_spline_TEXT;
  9359.             break;
  9360.         case 'Persistence':
  9361.             L_Persistence_TEXT='(persistence: The lifetime of a variable, procedure, or object. For example, an object can persist while the Visio application is running. An object that can store Event objects between Visio application sessions is said to persist events.)';
  9362.             sTemp=L_Persistence_TEXT;
  9363.             break;
  9364.         case 'Pin':
  9365.             L_Pin_TEXT='(pin: The point around which a shape or text block rotates, marked by a circle with a plus sign inside it.)';
  9366.             sTemp=L_Pin_TEXT;
  9367.             break;
  9368.         case 'Pixel':
  9369.             L_Pixel_TEXT='(pixel: An individual block of display information. The term pixel is derived from the phrase \"picture element.\")';
  9370.             sTemp=L_Pixel_TEXT;
  9371.             break;
  9372.         case 'Placeable_shape':
  9373.             L_Placeable_shape_TEXT='(placeable shape: A 2-D shape that is set to work with routable connectors and automatic layout. If a shape is set as placeable, a routable connector can detect and avoid crossing through it.)';
  9374.             sTemp=L_Placeable_shape_TEXT;
  9375.             break;
  9376.         case 'Point':
  9377.             L_Point_TEXT='(point: A single value that embodies a set of x- and y-coordinates for greater convenience in calculations.)';
  9378.             sTemp=L_Point_TEXT;
  9379.             break;
  9380.         case 'Point_to_point':
  9381.             L_Point_to_point_TEXT='(point-to-point:  A method of connecting shapes such that the actual point of connection stays the same no matter how you move the connected shapes.)';
  9382.             sTemp=L_Point_to_point_TEXT;
  9383.             break;
  9384.         case 'polygon':
  9385.             L_polygon_TEXT='(polygon: A 2-D, closed single shape with three or more line segments.)';
  9386.             sTemp=L_polygon_TEXT;
  9387.             break;
  9388.         case 'Polyline':
  9389.             L_Polyline_TEXT='(polyline: The type of line you create when you draw a sequence of line segments in one stroke without lifting your pen. A closed polyline is a polygon.)';
  9390.             sTemp=L_Polyline_TEXT;
  9391.             break;
  9392.         case 'Primary_selection':
  9393.             L_Primary_selection_TEXT='(primary selection: The first selected shape in a multiple selection, indicated on the drawing page by a thick magenta outline. When a multiple selection is combined, the formatting of the primary selection is applied to the new shape.)';
  9394.             sTemp=L_Primary_selection_TEXT;
  9395.             break;
  9396.         case 'Procedure':
  9397.             L_Procedure_TEXT='(procedure: A named sequence of statements executed as a unit. For example, Function, Property, and Sub are types of procedures.)';
  9398.             sTemp=L_Procedure_TEXT;
  9399.             break;
  9400.         case 'Procedure_template':
  9401.             L_Procedure_template_TEXT='(Procedure template: The beginning and ending statements that are automatically inserted in the Code window when you specify a Function, Property, or Sub procedure in the Insert Procedure dialog box.)';
  9402.             sTemp=L_Procedure_template_TEXT;
  9403.             break;
  9404.         case 'Process_DFD_model':
  9405.             L_Process_DFD_model_TEXT='(process (DFD model): In a DFD model, any activity that generates, uses, transforms, or destroys data.)';
  9406.             sTemp=L_Process_DFD_model_TEXT;
  9407.             break;
  9408.         case 'Project':
  9409.             L_Project_TEXT='(project: In Microsoft Visual Basic for Applications (VBA), the code that you write that is saved with a Visio file. You can create only one project for a Visio document, but that project can consist of any number of modules.)';
  9410.             sTemp=L_Project_TEXT;
  9411.             break;
  9412.         case 'Properties_tab':
  9413.             L_Properties_tab_TEXT='(Properties tab: A window that displays common properties associated with the selected UML element. You cannot edit the properties in this window; it\'s for viewing purposes only.)';
  9414.             sTemp=L_Properties_tab_TEXT;
  9415.             break;
  9416.         case 'Property':
  9417.             L_Property_TEXT='(property: The type of information tracked by a category. For example, the Person category might track the First Name, Last Name, Date Hired, and Title properties.)';
  9418.             sTemp=L_Property_TEXT;
  9419.             break;
  9420.         case 'Provider_application':
  9421.             L_Provider_application_TEXT='(provider application: An application that provides objects that can be controlled through Automation. A provider application makes the objects accessible to other applications and provides, or exposes, the properties and methods that control them.)';
  9422.             sTemp=L_Provider_application_TEXT;
  9423.             break;
  9424.         case 'Qualified_Name':
  9425.             L_Qualified_Name_TEXT='(Qualified Name: The naming property and the value for a directory service object. The Qualified Name syntax uses the naming property plus the value when displayed.)';
  9426.             sTemp=L_Qualified_Name_TEXT;
  9427.             break;
  9428.         case 'Qualifier':
  9429.             L_Qualifier_TEXT='(qualifier: One or more attributes of an association whose value(s) distinguish the set of objects at the far end of the association. A qualifier is indicated by a small rectangle at the source end of the association.)';
  9430.             sTemp=L_Qualifier_TEXT;
  9431.             break;
  9432.         case 'Range_of_eight':
  9433.             L_Range_of_eight_TEXT='(range of eight: A rule for handling instances whose scale is different from that of the drawing page. If the ratio of a master\'s drawing scale differs from that of the  page by less than a factor of eight, the instance is scaled  for the drawing page.)';
  9434.             sTemp=L_Range_of_eight_TEXT;
  9435.             break;
  9436.         case 'Realizes_relationship':
  9437.             L_Realizes_relationship_TEXT='(realizes relationship: A relationship that means the client at the tail of the arrow supports or inherits all the operations of the supplier at the arrowhead.)';
  9438.             sTemp=L_Realizes_relationship_TEXT;
  9439.             break;
  9440.         case 'Reception':
  9441.             L_Reception_TEXT='(reception: A declaration stating that a classifier is prepared to react to the receipt of a signal. The reception designates a signal and specifies the expected behavioral response. A reception is a summary of expected behavior.)';
  9442.             sTemp=L_Reception_TEXT;
  9443.             break;
  9444.         case 'Redlining':
  9445.             L_Redlining_TEXT='(redlining: To review and mark up or add comments to a drawing.)';
  9446.             sTemp=L_Redlining_TEXT;
  9447.             break;
  9448.         case 'Reference_mode':
  9449.             L_Reference_mode_TEXT='(reference mode: A word, number, or abbreviation used to identify a unique instance of an entity object type.)';
  9450.             sTemp=L_Reference_mode_TEXT;
  9451.             break;
  9452.         case 'Reference_Ports':
  9453.             L_Reference_Ports_TEXT='(reference ports: A port that defines the internal and external ports of an actor reference. Reference ports can be placed only on the outer border of an actor reference shape. They can be used as anchors for bindings.)';
  9454.             sTemp=L_Reference_Ports_TEXT;
  9455.             break;
  9456.         case 'Refinement':
  9457.             L_Refinement_TEXT='(refinement: A kind of dependency that indicates a historical or derivation relationship between two elements with a mapping between them. A description of the mapping may be attached to the dependency in a note.)';
  9458.             sTemp=L_Refinement_TEXT;
  9459.             break;
  9460.         case 'Related_to':
  9461.             L_Related_to_TEXT='(related to: Shares or associates the selected item with another folder. For example, if an Administrative Assistant is shared by two departments, you would relate that person to both departments.)';
  9462.             sTemp=L_Related_to_TEXT;
  9463.             break;
  9464.         case 'Relay_Ports':
  9465.             L_Relay_Ports_TEXT='(relay ports: A type of class port that defines the internal and external ports of an actor class. Can appear only on the border of an actor class. Relay ports relay incoming messages to a contained actor or outgoing messages from a contained actor.)';
  9466.             sTemp=L_Relay_Ports_TEXT;
  9467.             break;
  9468.         case 'Replication':
  9469.             L_Replication_TEXT='(replication: A connection between two data storage objects that allows synchronization between the two objects. Data storage objects are usually servers, databases, or domain controllers.)';
  9470.             sTemp=L_Replication_TEXT;
  9471.             break;
  9472.         case 'Report_definition':
  9473.             L_Report_definition_TEXT='(report definition: The definition of a property report that determines which shapes are used to generate the report, what custom properties are included, and how the information in the report is sorted.)';
  9474.             sTemp=L_Report_definition_TEXT;
  9475.             break;
  9476.         case 'Resize':
  9477.             L_Resize_TEXT='(resize: To change the dimensions of a shape.)';
  9478.             sTemp=L_Resize_TEXT;
  9479.             break;
  9480.         case 'Rotation_handle':
  9481.             L_Rotation_handle_TEXT='(rotation handle: The round handle that appears at the top of a 2-D shape\'s or text block\'s selection rectangle when you select the shape or text block using the Pointer tool or select a text block using the Text Block tool.)';
  9482.             sTemp=L_Rotation_handle_TEXT;
  9483.             break;
  9484.         case 'Routable_connector':
  9485.             L_Routable_connector_TEXT='(routable connector: A 1-D connector that automatically changes its path to avoid crossing through 2-D placeable shapes that lie between the two shapes the connector connects.)';
  9486.             sTemp=L_Routable_connector_TEXT;
  9487.             break;
  9488.         case 'Scale':
  9489.             L_Scale_TEXT='(scale: A measure of the relationship between actual distances and distances represented in a Visio drawing. For example, a floor plan might have a scale of one meter of actual distance to one centimeter in the drawing.)';
  9490.             sTemp=L_Scale_TEXT;
  9491.             break;
  9492.         case 'Scaled_drawing_page':
  9493.             L_Scaled_drawing_page_TEXT='(scaled drawing page: A drawing page with a drawing scale, such as 1/4\" = 1\' or 2 cm = 1 m.)';
  9494.             sTemp=L_Scaled_drawing_page_TEXT;
  9495.             break;
  9496.         case 'Schema':
  9497.             L_Schema_TEXT='(schema: A collection of classes and properties for a directory service. Classes and properties determine the types of information stored in the directory service and how they interact with each other.)';
  9498.             sTemp=L_Schema_TEXT;
  9499.             break;
  9500.         case 'Scope':
  9501.             L_Scope_TEXT='(scope: The extent to which a variable, procedure, or object persists in a running program. The scope of an item typically depends on where it is declared.)';
  9502.             sTemp=L_Scope_TEXT;
  9503.             break;
  9504.         case 'ScreenTips':
  9505.             L_ScreenTips_TEXT='(ScreenTips: Tips that appear when you pause the pointer over certain elements in the Visio program, including: masters on stencils, toolbar buttons, and the ruler.)';
  9506.             sTemp=L_ScreenTips_TEXT;
  9507.             break;
  9508.         case 'Segment':
  9509.             L_Segment_TEXT='(segment: A straight line or curve that is part of a more complex shape.)';
  9510.             sTemp=L_Segment_TEXT;
  9511.             break;
  9512.         case 'Selection':
  9513.             L_Selection_TEXT='(selection: Shapes in a drawing that you have selected and on which you can perform actions. A selected shape has selection handles. Multiple selected shapes have magenta outlines. Text selected in a text block is highlighted when it is editable.)';
  9514.             sTemp=L_Selection_TEXT;
  9515.             break;
  9516.         case 'Selection_handle':
  9517.             L_Selection_handle_TEXT='(selection handle: A square handle that appears on a shape selected with the Pointer tool. Selection handles indicate that you can move or size the shape.)';
  9518.             sTemp=L_Selection_handle_TEXT;
  9519.             break;
  9520.         case 'Selection_net':
  9521.             L_Selection_net_TEXT='(selection net: A means of selecting more than one shape at a time by dragging the Pointer tool to define an area that encloses all the shapes to be selected.)';
  9522.             sTemp=L_Selection_net_TEXT;
  9523.             break;
  9524.         case 'Selection_rectangle':
  9525.             L_Selection_rectangle_TEXT='(selection rectangle: The dotted line that surrounds selected shapes or objects from other applications.)';
  9526.             sTemp=L_Selection_rectangle_TEXT;
  9527.             break;
  9528.         case 'Sequence_diagram':
  9529.             L_Sequence_diagram_TEXT='(sequence diagram: An interaction diagram that shows the objects participating in a particular interaction and the messages they exchange arranged in a time sequence.)';
  9530.             sTemp=L_Sequence_diagram_TEXT;
  9531.             break;
  9532.         case 'Sequential_build':
  9533.             L_Sequential_build_TEXT='(sequential build: A method of building a PowerPoint slide using elements of a Visio drawing. In a sequential build, you bring in elements of a Visio drawing one by one onto successive slides.)';
  9534.             sTemp=L_Sequential_build_TEXT;
  9535.             break;
  9536.         case 'ServerSide_image_map':
  9537.             L_ServerSide_image_map_TEXT='(server-side image map: A World Wide Web graphic with different linked regions. A program on a Web server examines map data associated with the linked regions and processes the links.)';
  9538.             sTemp=L_ServerSide_image_map_TEXT;
  9539.             break;
  9540.         case 'Shape':
  9541.             L_Shape_TEXT='(shape: (1) An open or closed object created using Visio drawing tools or commands. (2) A grouped collection of shapes. (3) An instance of a master that is dragged from a stencil onto the drawing page.)';
  9542.             sTemp=L_Shape_TEXT;
  9543.             break;
  9544.         case 'Shape_to_shape':
  9545.             L_Shape_to_shape_TEXT='(shape-to-shape: A method of connecting shapes. The actual point of connection might change when you move the connected shapes. You make shape-to-shape connections by dragging a connector from the center of one shape to the center of another shape.)';
  9546.             sTemp=L_Shape_to_shape_TEXT;
  9547.             break;
  9548.         case 'ShapeSheet':
  9549.             L_ShapeSheet_TEXT='(ShapeSheet: The spreadsheet that contains information about a shape; for example, its dimensions, angle, and center of rotation and the styles that determine the shape\'s appearance.)';
  9550.             sTemp=L_ShapeSheet_TEXT;
  9551.             break;
  9552.         case 'Signal':
  9553.             L_Signal_TEXT='(signal: A generalizable element defined independently of the classes handling the signal. It specifies an asynchronous stimulus communicated between instances to which there is no reply. The receiving instance handles the signal by a state machine.)';
  9554.             sTemp=L_Signal_TEXT;
  9555.             break;
  9556.         case 'Signal_Event':
  9557.             L_Signal_Event_TEXT='(signal event: In a statechart or activity diagram, an indication that one object has received a signal from another. A signal can be declared by using the keyword \"signal\" on a class in a class diagram.)';
  9558.             sTemp=L_Signal_Event_TEXT;
  9559.             break;
  9560.         case 'Signal_receipt':
  9561.             L_Signal_receipt_TEXT='(signal receipt: In an activity diagram, an icon used to replace an event label on a transition. The event signature is shown inside the icon. Unlabeled transition arrows connect the icon to the previous and next action states.)';
  9562.             sTemp=L_Signal_receipt_TEXT;
  9563.             break;
  9564.         case 'Signal_send':
  9565.             L_Signal_send_TEXT='(signal send: In an activity diagram, an icon used to replace an event label on a transition. The event signature is shown inside the icon. Unlabeled transition arrows connect the icon to the previous and next action states.)';
  9566.             sTemp=L_Signal_send_TEXT;
  9567.             break;
  9568.         case 'Sink_object':
  9569.             L_Sink_object_TEXT='(sink object: In a Microsoft Visual Basic for Applications (VBA) program, a class that receives events fired by a particular kind of Visio object.)';
  9570.             sTemp=L_Sink_object_TEXT;
  9571.             break;
  9572.         case 'Site':
  9573.             L_Site_TEXT='(site: An area of good network connectivity. Often a LAN (local area network), but it may contain multiple LANs connected by a fast WAN (wide area network).)';
  9574.             sTemp=L_Site_TEXT;
  9575.             break;
  9576.         case 'Size':
  9577.             L_Size_TEXT='(size: To change the dimensions of a shape by dragging one of its handles after it has been selected with the pointer tool.)';
  9578.             sTemp=L_Size_TEXT;
  9579.             break;
  9580.         case 'SmartConnector_shape':
  9581.             L_SmartConnector_shape_TEXT='(SmartConnector shape: A 1-D shape that behaves intelligently when it\'s used to connect other shapes.)';
  9582.             sTemp=L_SmartConnector_shape_TEXT;
  9583.             break;
  9584.         case 'SmartShape_symbol':
  9585.             L_SmartShape_symbol_TEXT='(SmartShape symbol: A shape that is programmed to behave predictably when you move or size it.)';
  9586.             sTemp=L_SmartShape_symbol_TEXT;
  9587.             break;
  9588.         case 'Snap':
  9589.             L_Snap_TEXT='(snap: The ability of shapes, guides, grid lines, and other elements in the Visio program to pull shapes and other elements into position when they are moved and sized.)';
  9590.             sTemp=L_Snap_TEXT;
  9591.             break;
  9592.         case 'solution':
  9593.             L_solution_TEXT='(solution: The file folder that contains templates for particular drawing types. For example, the Project Schedule solution folder contains the Calendar, Gantt Chart, PERT Chart, and Timeline, templates that you use to create those drawing types.)';
  9594.             sTemp=L_solution_TEXT;
  9595.             break;
  9596.         case 'Source_file':
  9597.             L_Source_file_TEXT='(source file: The file that contains the information that was used to create a linked or embedded object. The object exists in the destination file. When you update the information in the source file, the information in the linked object is also updated.)';
  9598.             sTemp=L_Source_file_TEXT;
  9599.             break;
  9600.         case 'Space_identifier_1':
  9601.             L_Space_identifier_1_TEXT='(space identifier: A custom property assigned to a Space shape that uniquely identifies that space shape in a space plan drawing, such as an office number or room number. The custom property label is Space ID.)';
  9602.             sTemp=L_Space_identifier_1_TEXT;
  9603.             break;
  9604.         case 'space_plan':
  9605.             L_space_plan_TEXT='(space plan: A drawing that use Space shapes and resource shapes to track the approximate location of resources in a building.)';
  9606.             sTemp=L_space_plan_TEXT;
  9607.             break;
  9608.         case 'Spanning_Tree':
  9609.             L_Spanning_Tree_TEXT='(Spanning Tree: The Spanning Tree function is available for some switches and bridges. This function has the ability to enable backup loops between switches (in the case of either cable or port failure).)';
  9610.             sTemp=L_Spanning_Tree_TEXT;
  9611.             break;
  9612.         case 'Spline':
  9613.             L_Spline_TEXT='(spline: A freeform curve that is based on a polynomial equation.)';
  9614.             sTemp=L_Spline_TEXT;
  9615.             break;
  9616.         case 'Spline_knot':
  9617.             L_Spline_knot_TEXT='(spline knot: A real number that marks the boundary between polynomial pieces on a spline.)';
  9618.             sTemp=L_Spline_knot_TEXT;
  9619.             break;
  9620.         case 'Stacking_order':
  9621.             L_Stacking_order_TEXT='(stacking order: The order in which shapes overlap other shapes on the page and the order in which shapes are selected. You can change the stacking order of shapes by using commands on the Shape menu.)';
  9622.             sTemp=L_Stacking_order_TEXT;
  9623.             break;
  9624.         case 'Stamp':
  9625.             L_Stamp_TEXT='(stamp: To create an instance of a master with the Stamp tool. To stamp a master, select the master in the stencil, choose the Stamp tool, and click where you want the instance to appear.)';
  9626.             sTemp=L_Stamp_TEXT;
  9627.             break;
  9628.         case 'StandAlone_stencil':
  9629.             L_StandAlone_stencil_TEXT='(stand-alone stencil: A Visio file with a .vss file name extension that contains a collection of masters and is usually referred to simply as a stencil. A stand-alone stencil usually does not have an accompanying drawing.)';
  9630.             sTemp=L_StandAlone_stencil_TEXT;
  9631.             break;
  9632.         case 'State':
  9633.             L_State_TEXT='(state: The period of time during which an actor exhibits a particular behavior.)';
  9634.             sTemp=L_State_TEXT;
  9635.             break;
  9636.         case 'State_Context':
  9637.             L_State_Context_TEXT='(state context: A nested series of states, which represents the current state of a system.)';
  9638.             sTemp=L_State_Context_TEXT;
  9639.             break;
  9640.         case 'State_machine':
  9641.             L_State_machine_TEXT='(state machine: A graph of states and transitions that describes the response of an object of a given class to the receipt of outside stimuli. A state machine is attached to a class or method. A statechart diagram represents a state machine.)';
  9642.             sTemp=L_State_machine_TEXT;
  9643.             break;
  9644.         case 'State_UML':
  9645.             L_State_UML_TEXT='(state (UML): In a statechart or activity diagram, a condition during which an object satisfies a condition, performs an action, or waits for an event.)';
  9646.             sTemp=L_State_UML_TEXT;
  9647.             break;
  9648.         case 'Statechart_diagram':
  9649.             L_Statechart_diagram_TEXT='(statechart diagram: A representation of a state machine, attached to a class or method, that describes the response of the class to outside stimuli.)';
  9650.             sTemp=L_Statechart_diagram_TEXT;
  9651.             break;
  9652.         case 'Static_glue':
  9653.             L_Static_glue_TEXT='(static glue: A type of glue behavior in which the endpoint of a connector remains fixed to a particular connection point, no matter how the shape to which it is glued moves.)';
  9654.             sTemp=L_Static_glue_TEXT;
  9655.             break;
  9656.         case 'Static_structure_diagram':
  9657.             L_Static_structure_diagram_TEXT='(static structure diagram: A diagram that shows the static structure of a model; that is, the elements that exist (such as classes and types), the internal structure of the elements, and their relationships to one another.)';
  9658.             sTemp=L_Static_structure_diagram_TEXT;
  9659.             break;
  9660.         case 'Stencil':
  9661.             L_Stencil_TEXT='(stencil: A collection of masters associated with a particular Visio drawing type, or template. By default, stencils that open with a template are docked on the left side of the drawing window.)';
  9662.             sTemp=L_Stencil_TEXT;
  9663.             break;
  9664.         case 'Stencil_path':
  9665.             L_Stencil_path_TEXT='(stencil path: The folder or folders where Visio stencils are stored. To find your stencil path, on the Tools menu, click Options. On the File Paths tab, the Stencils box shows the stencil folder location. You can add folders to this path.)';
  9666.             sTemp=L_Stencil_path_TEXT;
  9667.             break;
  9668.         case 'Stereotype':
  9669.             L_Stereotype_TEXT='(stereotypes: A representation of a usage distinction. A stereotype is a subclass of an existing element with the same attributes and relationships as that element but with a different intent and possibly additional constraints.)';
  9670.             sTemp=L_Stereotype_TEXT;
  9671.             break;
  9672.         case 'Stored_procedure':
  9673.             L_Stored_procedure_TEXT='(stored procedure: A procedure created by analysts and stored in the data dictionary for repeated use by applications.)';
  9674.             sTemp=L_Stored_procedure_TEXT;
  9675.             break;
  9676.         case 'Stub':
  9677.             L_Stub_TEXT='(stub: In a statechart diagram, a small vertical line drawn inside the boundary of a composite state that indicates a transition connected to a suppressed nested state.)';
  9678.             sTemp=L_Stub_TEXT;
  9679.             break;
  9680.         case 'Style':
  9681.             L_Style_TEXT='(style: A collection of attributes that has a name and is saved with a template or drawing file.)';
  9682.             sTemp=L_Style_TEXT;
  9683.             break;
  9684.         case 'Subcategory':
  9685.             L_Subcategory_TEXT='(subcategory: A new category that is based on an existing category. For example, instead of tracking computers along with your other equipment, you might want to create a Computer subcategory from the Equipment category to track them as a separate group.)';
  9686.             sTemp=L_Subcategory_TEXT;
  9687.             break;
  9688.         case 'Subdivision':
  9689.             L_Subdivision_TEXT='(subdivision: The division between grid lines and between intervals of the ruler. This option is set using the Ruler & Grid command. The choices are Fine, Normal, and Coarse.)';
  9690.             sTemp=L_Subdivision_TEXT;
  9691.             break;
  9692.         case 'Subselect':
  9693.             L_Subselect_TEXT='(subselect: To select individual shapes within a group.)';
  9694.             sTemp=L_Subselect_TEXT;
  9695.             break;
  9696.         case 'Subsystem':
  9697.             L_Subsystem_TEXT='(subsystem: A package that contains the contents of the entire system or an entire model within the system. Dropping a Subsystem shape onto a drawing page automatically creates a new static structure diagram drawing page.)';
  9698.             sTemp=L_Subsystem_TEXT;
  9699.             break;
  9700.         case 'Summary_task':
  9701.             L_Summary_task_TEXT='(summary task: A summary task has more than one subtask below it. Subtasks are indented below the summary task in the project frame. The summary task bar has special markers (inverted yellow triangles) to indicate that it has subtasks.)';
  9702.             sTemp=L_Summary_task_TEXT;
  9703.             break;
  9704.         case 'Swimlane':
  9705.             L_Swimlane_TEXT='(swimlane: In an activity diagram, a way of assigning responsibility to action states. Swimlanes are columns with solid vertical lines on each side. Each swimlane represents the responsible class, person, or organizational unit.)';
  9706.             sTemp=L_Swimlane_TEXT;
  9707.             break;
  9708.         case 'Synchronized_copy':
  9709.             L_Synchronized_copy_TEXT='(synchronized copy: A copy of a department that you create on a new page of a large organization chart, so that you can determine how your chart breaks across pages. When you create a synchronized copy, any changes you make appear in both)';
  9710.             sTemp=L_Synchronized_copy_TEXT;
  9711.             break;
  9712.         case 'System':
  9713.             L_System_TEXT='(system: Any application or process that you want to model. Examples of systems include a computer game, a process for assembling microchips, and a library information system.)';
  9714.             sTemp=L_System_TEXT;
  9715.             break;
  9716.         case 'System_boundary':
  9717.             L_System_boundary_TEXT='(system boundary: In a use case diagram, a boundary surrounding the use cases that indicates the system. You can resize the system boundary by dragging a selection handle on the System Boundary shape.)';
  9718.             sTemp=L_System_boundary_TEXT;
  9719.             break;
  9720.         case 'Tagged_value':
  9721.             L_Tagged_value_TEXT='(tagged value: A keyword-value pair that can be attached to any model element. The keyword is called a tag, and it represents a property applicable to one or many elements. Both the keyword and the value are strings.)';
  9722.             sTemp=L_Tagged_value_TEXT;
  9723.             break;
  9724.         case 'Template':
  9725.             L_Template_TEXT='(template: A Visio file (drawing type) with a .vst extension that opens with the stencils, styles, and settings you need to create a particular type of drawing.)';
  9726.             sTemp=L_Template_TEXT;
  9727.             break;
  9728.         case 'Text_block':
  9729.             L_Text_block_TEXT='(text block: The text area associated with a shape that appears when you click the shape with the text tool or select it with the pointer tool.)';
  9730.             sTemp=L_Text_block_TEXT;
  9731.             break;
  9732.         case 'Textual_Definition':
  9733.             L_Textual_Definition_TEXT='(textual definition: A definition used to list the textual declarations of extended state variables or the functions associated with a state context.)';
  9734.             sTemp=L_Textual_Definition_TEXT;
  9735.             break;
  9736.         case 'Tile':
  9737.             L_Tile_TEXT='(tile: (1) A printing technique used when oversized drawing pages are printed on multiple sheets of paper. (2) A command on the Visio Window menu that opens multiple drawings side by side in the main window.)';
  9738.             sTemp=L_Tile_TEXT;
  9739.             break;
  9740.         case 'Time_Event':
  9741.             L_Time_Event_TEXT='(time event: An event that occurs after a designated period of time or on the occurrence of a given date or time. A time event is indicated by the keyword \"after,\" followed by an expression that evaluates to an amount of time.)';
  9742.             sTemp=L_Time_Event_TEXT;
  9743.             break;
  9744.         case 'Tip':
  9745.             L_Tip_TEXT='(tip: Notes that appear when you pause the pointer over certain elements in the Visio program, including masters on stencils, toolbar buttons, and the ruler.)';
  9746.             sTemp=L_Tip_TEXT;
  9747.             break;
  9748.         case 'Toolbars':
  9749.             L_Toolbars_TEXT='(toolbars: The rows of boxes, buttons, and bars that appear below the menu bar. To choose which toolbars you want to display and to create custom toolbars, click View, and then point to Toolbars.)';
  9750.             sTemp=L_Toolbars_TEXT;
  9751.             break;
  9752.         case 'Trace':
  9753.             L_Trace_TEXT='(trace: A kind of dependency that indicates a historical relationship between two elements that represent the same concept at different semantic levels or from different points of view.)';
  9754.             sTemp=L_Trace_TEXT;
  9755.             break;
  9756.         case 'Transition':
  9757.             L_Transition_TEXT='(transition: An allowed path from one state to another.)';
  9758.             sTemp=L_Transition_TEXT;
  9759.             break;
  9760.         case 'Transition_Points':
  9761.             L_Transition_Points_TEXT='(transition points: The start or endpoint of a transition segment.)';
  9762.             sTemp=L_Transition_Points_TEXT;
  9763.             break;
  9764.         case 'Transition_To_History':
  9765.             L_Transition_To_History_TEXT='(transition to history: An incoming transition segment that ends on an outer state context and does not have a continuing transition segment within the context.)';
  9766.             sTemp=L_Transition_To_History_TEXT;
  9767.             break;
  9768.         case 'Transition_UML':
  9769.             L_Transition_UML_TEXT='(transition (UML): In a statechart or activity diagram, a relationship between two states or action states or between a state and itself (a complex transition has multiple source and/or target states).)';
  9770.             sTemp=L_Transition_UML_TEXT;
  9771.             break;
  9772.         case 'Transitive':
  9773.             L_Transitive_TEXT='(transitive: A trust relationship where one domain trusts all other domains. For example, if Site X has a trust relationship with Site Y, and Site Y has a trust relationship with Site Z, Site X does not necessarily have a trust relationship with Site Z.)';
  9774.             sTemp=L_Transitive_TEXT;
  9775.             break;
  9776.         case 'Tree_view':
  9777.             L_Tree_view_TEXT='(tree view: Displayed in a window in the UML Navigator, a hierarchy in which each UML element or view (diagram) is represented by an icon. The UML template automatically creates a tree view of your model.)';
  9778.             sTemp=L_Tree_view_TEXT;
  9779.             break;
  9780.         case 'Trigger':
  9781.             L_Trigger_TEXT='(trigger: An event-driven, stored procedure. A stored procedure is a procedure created by analysts and stored in the data dictionary for repeated use by applications.)';
  9782.             sTemp=L_Trigger_TEXT;
  9783.             break;
  9784.         case 'TWAIN':
  9785.             L_TWAIN_TEXT='(TWAIN: A cross-platform interface for acquiring electronic images that have been captured by scanners, digital cameras, and still-frame video capture boards.)';
  9786.             sTemp=L_TWAIN_TEXT;
  9787.             break;
  9788.         case 'Two_dimensional_shape':
  9789.             L_Two_dimensional_shape_TEXT='(2-D shape: A shape that has four selection handles that you can use to resize the shape proportionally.)';
  9790.             sTemp=L_Two_dimensional_shape_TEXT;
  9791.             break;
  9792.         case 'Two_element_constraint':
  9793.             L_Two_element_constraint_TEXT='(2-element contstraint: A constraint that applies to two elements, such as two classes or two associations. The constraint is shown as a dashed arrow from one element to the other, labeled by the constraint string in braces ({  }).)';
  9794.             sTemp=L_Two_element_constraint_TEXT;
  9795.             break;
  9796.         case 'Type':
  9797.             L_Type_TEXT='(type: A changeable role that an object may adopt and later abandon. A type is similar to a class in that it describes a set of objects with attributes and operations, but a type may not include methods.)';
  9798.             sTemp=L_Type_TEXT;
  9799.             break;
  9800.         case 'UML_Navigator':
  9801.             L_UML_Navigator_TEXT='(UML Navigator: In the UML solution, a window that contains the tree view of a UML system. You can open or close the UML Navigator, and you can dock or float it above your drawing page and stencils.)';
  9802.             sTemp=L_UML_Navigator_TEXT;
  9803.             break;
  9804.         case 'UML_Properties_dialog_boxes':
  9805.             L_UML_Properties_dialog_boxes_TEXT='(UML Properties dialog boxes: Used for editing a UML element\'s properties. By double-clicking a UML shape on the drawing page or an icon in the tree view, you can open an element\'s UML Properties dialog box and add values for the element\'s properties.)';
  9806.             sTemp=L_UML_Properties_dialog_boxes_TEXT;
  9807.             break;
  9808.         case 'UMLSysA':
  9809.             L_UMLSysA_TEXT='(UMLSysA: One UML drawing file represents the system you are modeling.)';
  9810.             sTemp=L_UMLSysA_TEXT;
  9811.             break;
  9812.         case 'UMLSysB':
  9813.             L_UMLSysB_TEXT='(UMLSysB: Each model in the system is an abstraction that reveals the system from a different perspective. Each diagram is a different view of a model. Each diagram type is represented by an icon (that resembles the icons pictured here).)';
  9814.             sTemp=L_UMLSysB_TEXT;
  9815.             break;
  9816.         case 'UMLSysC':
  9817.             L_UMLSysC_TEXT='(UMLSysC: Use case diagrams describe the external actors and how they use the system.)';
  9818.             sTemp=L_UMLSysC_TEXT;
  9819.             break;
  9820.         case 'UMLSysD':
  9821.             L_UMLSysD_TEXT='(UMLSysD: Conceptual models (object diagrams), a type of static structure diagram, decompose a system into related real-world objects.)';
  9822.             sTemp=L_UMLSysD_TEXT;
  9823.             break;
  9824.         case 'UMLSysE':
  9825.             L_UMLSysE_TEXT='(UMLSysE: System sequence diagrams show, for a particular use case, the system events that external actors generate.)';
  9826.             sTemp=L_UMLSysE_TEXT;
  9827.             break;
  9828.         case 'UMLSysF':
  9829.             L_UMLSysF_TEXT='(UMLSysF: Use packages to group related elements and partition a complex conceptual model into manageable subsets.)';
  9830.             sTemp=L_UMLSysF_TEXT;
  9831.             break;
  9832.         case 'UMLSysG':
  9833.             L_UMLSysG_TEXT='(UMLSysG: Collaboration diagrams show how objects involved in each system event interact via messages to fulfill tasks.)';
  9834.             sTemp=L_UMLSysG_TEXT;
  9835.             break;
  9836.         case 'UMLSysH':
  9837.             L_UMLSysH_TEXT='(UMLSysH: Class diagrams, a type of static structure diagram, translate real-world objects into software entities with associations, attributes, interfaces, methods, and dependencies.)';
  9838.             sTemp=L_UMLSysH_TEXT;
  9839.             break;
  9840.         case 'UMLSysI':
  9841.             L_UMLSysI_TEXT='(UMLSysI: For state-dependent objects, statechart diagrams describe how objects react to different events.)';
  9842.             sTemp=L_UMLSysI_TEXT;
  9843.             break;
  9844.         case 'UMLSysJ':
  9845.             L_UMLSysJ_TEXT='(UMLSysJ: Activity diagrams show the workflow related to individual objects.)';
  9846.             sTemp=L_UMLSysJ_TEXT;
  9847.             break;
  9848.         case 'UMLSysK':
  9849.             L_UMLSysK_TEXT='(UMLSysK: Deployment diagrams show the physical relationships among the software and hardware components.)';
  9850.             sTemp=L_UMLSysK_TEXT;
  9851.             break;
  9852.         case 'UMLSysL':
  9853.             L_UMLSysL_TEXT='(UMLSysL: Component diagrams show the structure of the code itself and the dependencies between components.)';
  9854.             sTemp=L_UMLSysL_TEXT;
  9855.             break;
  9856.         case 'Uniqueness_constraint':
  9857.             L_Uniqueness_constraint_TEXT='(uniqueness constraint: A constraint that prohibits repetition of individual data or combinations of data.)';
  9858.             sTemp=L_Uniqueness_constraint_TEXT;
  9859.             break;
  9860.         case 'Unitless_number':
  9861.             L_Unitless_number_TEXT='(unitless number: A number that is not associated with a unit of measure.)';
  9862.             sTemp=L_Unitless_number_TEXT;
  9863.             break;
  9864.         case 'Units_of_measure':
  9865.             L_Units_of_measure_TEXT='(units of measure: The type of measurement system used in a drawing. In formulas, used after a number to specify the unit of measure that the number represents.)';
  9866.             sTemp=L_Units_of_measure_TEXT;
  9867.             break;
  9868.         case 'Unqualified_Name':
  9869.             L_Unqualified_Name_TEXT='(Unqualified Name: A display of the value of the object without any naming properties. Multiple naming properties are separated by a plus sign (+).)';
  9870.             sTemp=L_Unqualified_Name_TEXT;
  9871.             break;
  9872.         case 'Unscaled_drawing_page':
  9873.             L_Unscaled_drawing_page_TEXT='(unscaled drawing page: A drawing page with a drawing scale of 1:1.)';
  9874.             sTemp=L_Unscaled_drawing_page_TEXT;
  9875.             break;
  9876.         case 'US_units':
  9877.             L_US_units_TEXT='(US units: Units used in the US measurement system, such as inches, feet, yards, and miles.)';
  9878.             sTemp=L_US_units_TEXT;
  9879.             break;
  9880.         case 'Usage':
  9881.             L_Usage_TEXT='(usage: A kind of dependency that indicates that one element requires the presence of another element for its correct implementation or functioning.)';
  9882.             sTemp=L_Usage_TEXT;
  9883.             break;
  9884.         case 'Use_case':
  9885.             L_Use_case_TEXT='(use case: In a use case diagram, a representation of a set of events that occurs when an actor uses a system to complete a process. Normally, a use case is a relatively large process, not an individual step or transaction.)';
  9886.             sTemp=L_Use_case_TEXT;
  9887.             break;
  9888.         case 'Use_case_diagram':
  9889.             L_Use_case_diagram_TEXT='(use case diagram: A diagram that shows the external actors who will interact with your system and how they will use it. The diagram consists of a system boundary, actors, use cases, and use case relationships (communicates, uses, and extends).)';
  9890.             sTemp=L_Use_case_diagram_TEXT;
  9891.             break;
  9892.         case 'User_form':
  9893.             L_User_form_TEXT='(user form: A file in a Microsoft Visual Basic or Visual Basic for Applications (VBA) project with the file extension .frm that contains user interface controls, such as command buttons and text boxes.)';
  9894.             sTemp=L_User_form_TEXT;
  9895.             break;
  9896.         case 'Uses_relationship':
  9897.             L_Uses_relationship_TEXT='(uses relationship: In a use case diagram, a relationship between two use cases that indicates that an instance of use case A will also include behavior specified by use case B. The arrowhead  points toward the use case being used.)';
  9898.             sTemp=L_Uses_relationship_TEXT;
  9899.             break;
  9900.         case 'Utility':
  9901.             L_Utility_TEXT='(utility: In a static structure diagram, a programming convenience rather than a fundamental construct. Attributes and operations you define for a utility become global variables and procedures.)';
  9902.             sTemp=L_Utility_TEXT;
  9903.             break;
  9904.         case 'Vanishing_point':
  9905.             L_Vanishing_point_TEXT='(vanishing point: A point that represents where the perspective recedes in your drawing. You can move the vanishing point to any location on the drawing page.)';
  9906.             sTemp=L_Vanishing_point_TEXT;
  9907.             break;
  9908.         case 'Variable_grid':
  9909.             L_Variable_grid_TEXT='(variable grid: Grid lines that change as you change the magnification of a drawing. When you zoom in, grid lines are closer together.  When you zoom out, grid lines are farther apart.)';
  9910.             sTemp=L_Variable_grid_TEXT;
  9911.             break;
  9912.         case 'Vertex_vertices':
  9913.             L_Vertex_vertices_TEXT='(vertex, vertices: One of the diamond-shaped handles that appears between two segments on  a multiple-segment shape, or at the end of a segment. You can reshape a shape or connector by dragging its vertices.)';
  9914.             sTemp=L_Vertex_vertices_TEXT;
  9915.             break;
  9916.         case 'viconvertedcaddrawing':
  9917.             L_viconvertedcaddrawing_TEXT='(converted CAD drawing: A CAD drawing that you can edit with Visio. When you convert a CAD drawing, the blocks and entities are mapped to the closest equivalent Visio shapes.)';
  9918.             sTemp=L_viconvertedcaddrawing_TEXT;
  9919.             break;
  9920.         case 'vidithered':
  9921.             L_vidithered_TEXT='(dithered: A method for approximating colors on a display system or in a file format that does not have the specified color available.)';
  9922.             sTemp=L_vidithered_TEXT;
  9923.             break;
  9924.         case 'View':
  9925.             L_View_TEXT='(view: A way to present data in a database for review by a user. Views are created from subsets of columns from one or more tables in a database.)';
  9926.             sTemp=L_View_TEXT;
  9927.             break;
  9928.         case 'viink':
  9929.             L_viink_TEXT='(Ink: Writing done with the hand.)';
  9930.             sTemp=L_viink_TEXT;
  9931.             break;
  9932.         case 'viinsertedcaddrawing':
  9933.             L_viinsertedcaddrawing_TEXT='(inserted CAD drawing: A CAD drawing that you can view with Visio. Before you can edit an inserted CAD drawing, you must convert it into a Visio drawing.)';
  9934.             sTemp=L_viinsertedcaddrawing_TEXT;
  9935.             break;
  9936.         case 'vimarkup':
  9937.             L_vimarkup_TEXT='(markup: Review comments, shapes, and ink added to a markup overlay. Open the Reviewing task pane to view markup.)';
  9938.             sTemp=L_vimarkup_TEXT;
  9939.             break;
  9940.         case 'vimarkupoverlay':
  9941.             L_vimarkupoverlay_TEXT='(markup overlay: Holds the review comments, shapes, and ink of a reviewer. The markup overlay is separate from the original drawing. View Markup to see reviewers\' markup overlays.)';
  9942.             sTemp=L_vimarkupoverlay_TEXT;
  9943.             break;
  9944.         case 'vimemorymodel':
  9945.             L_vimemorymodel_TEXT='(memory model: In a Web site map, the memory model contains information about every link discovered. Changing the memory model changes the map on the drawing page.)';
  9946.             sTemp=L_vimemorymodel_TEXT;
  9947.             break;
  9948.         case 'viresource':
  9949.             L_viresource_TEXT='(resource: In a space plan, a person, computer, printer, or asset.)';
  9950.             sTemp=L_viresource_TEXT;
  9951.             break;
  9952.         case 'virle':
  9953.             L_virle_TEXT='(run-length encoding (RLE) compression: A fast and highly efficient method of storing data in which patterns in the bits representing information are translated into codes rather than being stored literally bit by bit and character by character.)';
  9954.             sTemp=L_virle_TEXT;
  9955.             break;
  9956.         case 'Virtual':
  9957.             L_Virtual_TEXT='(virtual: A class for which you cannot create an instance. A Virtual/Abstract class can only act as a superclass to other classes. In a directory service schema, virtual/abstract classes are dimmed.)';
  9958.             sTemp=L_Virtual_TEXT;
  9959.             break;
  9960.         case 'Visibility':
  9961.             L_Visibility_TEXT='(visibility: The ability of one element to see or refer to another. For one element to send a message to another element, the latter must be visible to the former.)';
  9962.             sTemp=L_Visibility_TEXT;
  9963.             break;
  9964.         case 'Visio_library':
  9965.             L_Visio_library_TEXT='(Visio library: A special dynamic-link library (dll) that is loaded by the Visio application at run time and can implement one or more Visio add-ons. A Visio library has the filename extension .vsl.)';
  9966.             sTemp=L_Visio_library_TEXT;
  9967.             break;
  9968.         case 'Visio_type_library':
  9969.             L_Visio_type_library_TEXT='(Visio type library: A file that contains definitions of the objects, properties, methods, events, and constants that the Visio application exposes to Automation.)';
  9970.             sTemp=L_Visio_type_library_TEXT;
  9971.             break;
  9972.         case 'vispace':
  9973.             L_vispace_TEXT='(space: In a space plan, a space identifies the approximate location of one or more resources, such as a person, computer, printer, or asset.)';
  9974.             sTemp=L_vispace_TEXT;
  9975.             break;
  9976.         case 'VLAN_Domains':
  9977.             L_VLAN_Domains_TEXT='(VLAN domain: A set of connected switches that share the same subnet definitions. A VLAN domain propagates changes of the domain attributes (including subnet definition) to switches in the domain.)';
  9978.             sTemp=L_VLAN_Domains_TEXT;
  9979.             break;
  9980.         case 'VLANs':
  9981.             L_VLANs_TEXT='(Virtual LANs (VLANs): Provide some of the advantages of a routed network within a switched network, such as reducing network traffic by breaking the network into multiple broadcast domains.)';
  9982.             sTemp=L_VLANs_TEXT;
  9983.             break;
  9984.         case 'Wall_reference_line':
  9985.             L_Wall_reference_line_TEXT='(wall reference line: The line that extends from the wall begin point to the wall endpoint. Although the wall reference line is typically centered on the wall or aligned with one edge of the wall, you can locate it any distance you want from the wall.)';
  9986.             sTemp=L_Wall_reference_line_TEXT;
  9987.             break;
  9988.         case 'WIA':
  9989.             L_WIA_TEXT='(WIA: A device-driver interface that supports still digital cameras and low- and high-end scanners, and allows retrieving of still images from IEEE 1394-based DV camcorders and USB-based \"Web cams.\")';
  9990.             sTemp=L_WIA_TEXT;
  9991.             break;
  9992.         case 'Wizard':
  9993.             L_Wizard_TEXT='(wizard: A Visio tool that automates common tasks. For example, you can use the Org Chart Wizard to automate creating an organization chart.)';
  9994.             sTemp=L_Wizard_TEXT;
  9995.             break;
  9996.         case 'Workspace':
  9997.             L_Workspace_TEXT='(workspace: A Visio file that contains data about the size and position of drawings and stencils at the time you save the workspace. When you open a workspace, the Visio program recreates the arrangement of stencil and drawing windows for you.)';
  9998.             sTemp=L_Workspace_TEXT;
  9999.             break;
  10000.         case 'Zero_point':
  10001.             L_Zero_point_TEXT='(zero point: (1) The location of the 0 on the horizontal or vertical ruler. (2) The point in the drawing window where the zero points of each ruler intersect. By default, the zero point is the lower-left corner of the drawing page.)';
  10002.             sTemp=L_Zero_point_TEXT;
  10003.             break;
  10004.         case 'Zoom':
  10005.             L_Zoom_TEXT='(zoom: To increase or decrease the display size of a drawing in the drawing window. A display size of 100% (or Actual Size) displays the drawing at the same size it will be when it is printed, unless you change the printed output in Page Setup.)';
  10006.             sTemp=L_Zoom_TEXT;
  10007.             break;
  10008.  
  10009.         // Project
  10010.  
  10011.         case 'pjcommittedresource':
  10012.             L_pjcommittedresource_TEXT='(committed resource: A resource that is formally allocated to any task assignments they have within a project. This is the default booking type.)';
  10013.             sTemp=L_pjcommittedresource_TEXT;
  10014.             break;
  10015.         case 'pjdefAbsoluteReference':
  10016.             L_pjdefAbsoluteReference_TEXT='(absolute reference: A reference to a column or row that is independent of the active cell. The results of an absolute reference remain the same regardless of the active cell\'s location.)';
  10017.             sTemp=L_pjdefAbsoluteReference_TEXT;
  10018.             break;
  10019.         case 'pjdefaccessibility_aids':
  10020.             L_pjdefaccessibility_aids_TEXT='(accessibility aids: Utilities that make computers easier to use for people with disabilities. Examples of accessibility aids include screen readers, speech-recognition programs, and on-screen keyboards.)';
  10021.             sTemp=L_pjdefaccessibility_aids_TEXT;
  10022.             break;
  10023.         case 'pjdefaccessible':
  10024.             L_pjdefaccessible_TEXT='(accessible: The quality of a given system of hardware or software that makes it usable by people with one or more physical disabilities, such as restricted mobility, blindness, or deafness.)';
  10025.             sTemp=L_pjdefaccessible_TEXT;
  10026.             break;
  10027.         case 'pjdefAccrualMethod':
  10028.             L_pjdefAccrualMethod_TEXT='(accrual method: Determines when the cost for a resource is incurred and when actual costs are charged to a project. You can incur costs at the start [Start] or finish [End] of a task or prorate them [Prorated] during the task.)';
  10029.             sTemp=L_pjdefAccrualMethod_TEXT;
  10030.             break;
  10031.         case 'pjdefActiveXAddin':
  10032.             L_pjdefActiveXAddin_TEXT='(COM add-in: A supplemental program with the filename extension .dll or .exe that extends the capabilities of a program by adding custom commands and specialized features. COM add-ins can be designed to load and run in one or more Office programs.)';
  10033.             sTemp=L_pjdefActiveXAddin_TEXT;
  10034.             break;
  10035.         case 'pjdefActual':
  10036.             L_pjdefActual_TEXT='(actual: Information that shows what has actually occurred. For example, the actual start date for a task is the day that the task actually started.)';
  10037.             sTemp=L_pjdefActual_TEXT;
  10038.             break;
  10039.         case 'pjdefActualCost':
  10040.             L_pjdefActualCost_TEXT='(actual cost: The cost that has actually been incurred to date for a task, resource, or assignment. For example, if the only resource assigned to a task gets paid $20 per hour and has worked for two hours, the actual cost to date for the task is $40.)';
  10041.             sTemp=L_pjdefActualCost_TEXT;
  10042.             break;
  10043.         case 'pjdefActualDuration':
  10044.             L_pjdefActualDuration_TEXT='(actual duration: The amount of time a task has been in progress. When you enter the actual duration of a task, Project uses this value to calculate the remaining duration according to the formula Remaining Duration = Duration - Actual Duration.)';
  10045.             sTemp=L_pjdefActualDuration_TEXT;
  10046.             break;
  10047.         case 'pjdefActualWork':
  10048.             L_pjdefActualWork_TEXT='(actual work: The amount of work that has been performed on a task or assignment. When you enter actual work on a task, the remaining work is calculated using this formula: Remaining Work = Work - Actual Work. Actual work is often referred to as \"actuals.\")';
  10049.             sTemp=L_pjdefActualWork_TEXT;
  10050.             break;
  10051.         case 'pjdefACWP':
  10052.             L_pjdefACWP_TEXT='(ACWP: Shows actual costs incurred for work already performed by a resource on a task, up to the project status date or today\'s date.)';
  10053.             sTemp=L_pjdefACWP_TEXT;
  10054.             break;
  10055.         case 'pjdefAddress':
  10056.             L_pjdefAddress_TEXT='(address: The Address field is where Project stores the Universal Naming Convention [UNC] for a file or the Uniform Resource Locator [URL] address of a hyperlink that you have associated with a task, resource, or assignment.)';
  10057.             sTemp=L_pjdefAddress_TEXT;
  10058.             break;
  10059.         case 'pjdefAdminClosure':
  10060.             L_pjdefAdminClosure_TEXT='(administrative closure: The process of documenting and archiving a project in a timely manner, as well as formally accepting the project\'s product and lessons learned.)';
  10061.             sTemp=L_pjdefAdminClosure_TEXT;
  10062.             break;
  10063.         case 'pjdefadministrator':
  10064.             L_pjdefadministrator_TEXT='(administrator: Sets up and manages user accounts, assigns permissions, and helps users with network or server access issues. This person can also manage and customize various elements in Project Professional and in Project Server.)';
  10065.             sTemp=L_pjdefadministrator_TEXT;
  10066.             break;
  10067.         case 'pjdefAlef_Hamzas':
  10068.             L_pjdefAlef_Hamzas_TEXT='(Alef Hamzas: A single Arabic character that represents the two-character combination Alef plus Hamza.)';
  10069.             sTemp=L_pjdefAlef_Hamzas_TEXT;
  10070.             break;
  10071.         case 'pjdefAllocation':
  10072.             L_pjdefAllocation_TEXT='(allocation: The percentage of a resource\'s capacity that is designated for a specific assignment.)';
  10073.             sTemp=L_pjdefAllocation_TEXT;
  10074.             break;
  10075.         case 'pjdefApplication':
  10076.             L_pjdefApplication_TEXT='(application: A computer program that is used for a particular kind of work, such as managing projects or word processing. This term application is used interchangeably with program.)';
  10077.             sTemp=L_pjdefApplication_TEXT;
  10078.             break;
  10079.         case 'pjdefArgument':
  10080.             L_pjdefArgument_TEXT='(argument: In Visual Basic for Applications, a constant, variable, or expression that is passed to a procedure.)';
  10081.             sTemp=L_pjdefArgument_TEXT;
  10082.             break;
  10083.         case 'pjdefASCII':
  10084.             L_pjdefASCII_TEXT='(ASCII: American Standard Code for Information Interchange.)';
  10085.             sTemp=L_pjdefASCII_TEXT;
  10086.             break;
  10087.         case 'pjdefAssignment':
  10088.             L_pjdefAssignment_TEXT='(assignment: A specific resource that is assigned to a particular task.)';
  10089.             sTemp=L_pjdefAssignment_TEXT;
  10090.             break;
  10091.         case 'pjdefAssignmentDelay':
  10092.             L_pjdefAssignmentDelay_TEXT='(assignment delay: The amount of time between the scheduled start of a task and the time that the assigned resource is to start working on the task.)';
  10093.             sTemp=L_pjdefAssignmentDelay_TEXT;
  10094.             break;
  10095.         case 'pjdefAssignmentUnits':
  10096.             L_pjdefAssignmentUnits_TEXT='(assignment units: The percentage of a work resource\'s time, or units, that the resource is assigned to a task.)';
  10097.             sTemp=L_pjdefAssignmentUnits_TEXT;
  10098.             break;
  10099.         case 'pjdefAssignmentView':
  10100.             L_pjdefAssignmentView_TEXT='(assignment view: A view that shows the resources assigned to each task as well as the total and timephased work and cost information for each assignment. The two assignment views are the Task Usage and Resource Usage views.)';
  10101.             sTemp=L_pjdefAssignmentView_TEXT;
  10102.             break;
  10103.         case 'pjdefAuthentication':
  10104.             L_pjdefAuthentication_TEXT='(authentication: The process of identifying a specific user and confirming that the user has permission to access Project Server.)';
  10105.             sTemp=L_pjdefAuthentication_TEXT;
  10106.             break;
  10107.         case 'pjdefAutoFilter':
  10108.             L_pjdefAutoFilter_TEXT='(AutoFilter: A way to filter information in a field [column]. By default, AutoFilters are off, but you can turn them on by clicking <b>AutoFilter</b>. Selecting a filter does not delete any information from your project; it only filters it from your view.)';
  10109.             sTemp=L_pjdefAutoFilter_TEXT;
  10110.             break;
  10111.         case 'pjdefAutomation':
  10112.             L_pjdefAutomation_TEXT='(automation: A way to work with objects from another program or development tool. Formerly called OLE Automation, Automation is an industry standard and a feature of the Component Object Model [COM].)';
  10113.             sTemp=L_pjdefAutomation_TEXT;
  10114.             break;
  10115.         case 'pjdefAvailability':
  10116.             L_pjdefAvailability_TEXT='(availability: Indicates when and how much of a resource\'s time can be scheduled for assigned work. Availability is determined by project and resource calendars, resource start and finish dates, or the level at which the resource is available for work.)';
  10117.             sTemp=L_pjdefAvailability_TEXT;
  10118.             break;
  10119.         case 'pjdefBAC':
  10120.             L_pjdefBAC_TEXT='(BAC: An estimate of the total project cost.)';
  10121.             sTemp=L_pjdefBAC_TEXT;
  10122.             break;
  10123.         case 'pjdefBackwardPass':
  10124.             L_pjdefBackwardPass_TEXT='(backward pass: Calculation of late finish and late start dates for project activities, determined by working backward from the project\'s finish date.)';
  10125.             sTemp=L_pjdefBackwardPass_TEXT;
  10126.             break;
  10127.         case 'pjdefBaseCalendar':
  10128.             L_pjdefBaseCalendar_TEXT='(base calendar: A calendar that can be used as a project and task calendar that specifies default working and nonworking time for a set of resources. Differs from a resource calendar, which specifies working and nonworking time for an individual resource.)';
  10129.             sTemp=L_pjdefBaseCalendar_TEXT;
  10130.             break;
  10131.         case 'pjdefBaselineCost':
  10132.             L_pjdefBaselineCost_TEXT='(baseline cost: The original project, resource, and assignment cost as shown in the baseline plan. The baseline cost is a snapshot of the cost at the time when the baseline plan was saved.)';
  10133.             sTemp=L_pjdefBaselineCost_TEXT;
  10134.             break;
  10135.         case 'pjdefBaselinePlan':
  10136.             L_pjdefBaselinePlan_TEXT='(baseline plan: The original project plans [up to 11 per project] used to track progress on a project. The baseline plan is a snapshot of your schedule at the time that you save the baseline and includes information about tasks, resources, and assignments.)';
  10137.             sTemp=L_pjdefBaselinePlan_TEXT;
  10138.             break;
  10139.         case 'pjdefBCWP':
  10140.             L_pjdefBCWP_TEXT='(BCWP: The earned value field that indicates how much of the task\'s budget should have been spent, given the actual duration of the task. Note that Project calculates BCWP at the task level differently than at the assignment level.)';
  10141.             sTemp=L_pjdefBCWP_TEXT;
  10142.             break;
  10143.         case 'pjdefBCWS':
  10144.             L_pjdefBCWS_TEXT='(BCWS: The earned value field that shows how much of the budget should have been spent, in view of the baseline cost of the task, assignment, or resource. BCWS is calculated as the cumulative timephased baseline costs up to the status date or today\'s date.)';
  10145.             sTemp=L_pjdefBCWS_TEXT;
  10146.             break;
  10147.         case 'pjdefbidirectional':
  10148.             L_pjdefbidirectional_TEXT='(bidirectional: An environment in which attributes of right-to-left and left-to-right behavior are used together, such as Hebrew and English text that appear in the same sentence.)';
  10149.             sTemp=L_pjdefbidirectional_TEXT;
  10150.             break;
  10151.         case 'pjdefBinding':
  10152.             L_pjdefBinding_TEXT='(early and late binding: The verification process that VBA uses when an object variable in one program refers to an object supplied by another program. Binding can occur at run time (late binding) or at compile time (early binding).)';
  10153.             sTemp=L_pjdefBinding_TEXT;
  10154.             break;
  10155.         case 'pjdefBitmapGrid':
  10156.             L_pjdefBitmapGrid_TEXT='(bitmap grid: The enlarged view of a button image in which you can edit the individual color pixels of the image.)';
  10157.             sTemp=L_pjdefBitmapGrid_TEXT;
  10158.             break;
  10159.         case 'pjdefBottomUpEstimating':
  10160.             L_pjdefBottomUpEstimating_TEXT='(bottom-up estimating: An estimating method in which the base costs of individual work items or resources are calculated into task, resource, and project cost totals.)';
  10161.             sTemp=L_pjdefBottomUpEstimating_TEXT;
  10162.             break;
  10163.         case 'pjdefBreakMode':
  10164.             L_pjdefBreakMode_TEXT='(break mode: In Visual Basic for Applications, the temporary suspension of a running program or macro while in the development environment. In break mode, you can examine, debug, reset, step, or resume running the program or macro.)';
  10165.             sTemp=L_pjdefBreakMode_TEXT;
  10166.             break;
  10167.         case 'pjdefBrowser':
  10168.             L_pjdefBrowser_TEXT='(browser: A program that interprets the HTML delivered from Web servers, formats it, and displays it to the user.)';
  10169.             sTemp=L_pjdefBrowser_TEXT;
  10170.             break;
  10171.         case 'pjdefBudget':
  10172.             L_pjdefBudget_TEXT='(budget: The estimated cost of a project that you establish in Project with your baseline plan.)';
  10173.             sTemp=L_pjdefBudget_TEXT;
  10174.             break;
  10175.         case 'pjdefBuffer':
  10176.             L_pjdefBuffer_TEXT='(buffer: Additional time added to a task\'s or project\'s scheduled duration that accounts for possible increases in the actual time required to complete the task or project.)';
  10177.             sTemp=L_pjdefBuffer_TEXT;
  10178.             break;
  10179.         case 'pjdefCal':
  10180.             L_pjdefCal_TEXT='(calendar: The scheduling mechanism that determines working time for resources and tasks. Project uses four types of calendars: the base calendar, project calendar, resource calendar, and task calendar.)';
  10181.             sTemp=L_pjdefCal_TEXT;
  10182.             break;
  10183.         case 'pjdefCalcOrEnter':
  10184.             L_pjdefCalcOrEnter_TEXT='(calculated or entered field: A field in which the value is determined by Project based on information in other fields. Information that you enter in the field yourself overrides calculated values.)';
  10185.             sTemp=L_pjdefCalcOrEnter_TEXT;
  10186.             break;
  10187.         case 'pjdefCalculatedFields':
  10188.             L_pjdefCalculatedFields_TEXT='(calculated field: A field in which the value is determined by Project based on information in other fields. Project may recalculate the value automatically or when you specify, depending on your choice of calculation settings.)';
  10189.             sTemp=L_pjdefCalculatedFields_TEXT;
  10190.             break;
  10191.         case 'pjdefCalculatedFilter':
  10192.             L_pjdefCalculatedFilter_TEXT='(calculated filter: Compares the values in two fields of a task or resource. For example, the Cost Overbudget filter compares baseline costs to current costs and displays or highlights only tasks with current costs higher than their baseline costs.)';
  10193.             sTemp=L_pjdefCalculatedFilter_TEXT;
  10194.             break;
  10195.         case 'pjdefCalendar':
  10196.             L_pjdefCalendar_TEXT='(calendar view: A Project view that displays a project\'s tasks in a calendar format.)';
  10197.             sTemp=L_pjdefCalendar_TEXT;
  10198.             break;
  10199.         case 'pjdefCaseSensitive':
  10200.             L_pjdefCaseSensitive_TEXT='(case-sensitive: Respects the case of the characters. For example, a case-sensitive search for a specific character string that includes uppercase and lowercase characters will not find the same character string with all lowercase characters.)';
  10201.             sTemp=L_pjdefCaseSensitive_TEXT;
  10202.             break;
  10203.         case 'pjdefCategory':
  10204.             L_pjdefCategory_TEXT='(category: A mapping, within Project Server, of users to projects and views. Each category has a name and allows users in that category to access specific projects through a specific set of views.)';
  10205.             sTemp=L_pjdefCategory_TEXT;
  10206.             break;
  10207.         case 'pjdefChart':
  10208.             L_pjdefChart_TEXT='(chart: A view or part of a view that represents project information graphically. For example, the Gantt Chart view consists of a sheet and a chart pane where tasks are represented as horizontal bars.)';
  10209.             sTemp=L_pjdefChart_TEXT;
  10210.             break;
  10211.         case 'pjdefcheck_out':
  10212.             L_pjdefcheck_out_TEXT='(check out: The process of opening an enterprise project or an enterprise resource\'s record for editing.)';
  10213.             sTemp=L_pjdefcheck_out_TEXT;
  10214.             break;
  10215.         case 'pjdefClipboard':
  10216.             L_pjdefClipboard_TEXT='(clipboard: The holding place for information being copied or moved within Project or between Project and other programs.)';
  10217.             sTemp=L_pjdefClipboard_TEXT;
  10218.             break;
  10219.         case 'pjdefCode':
  10220.             L_pjdefCode_TEXT='(code: In Visual Basic for Applications, a series of one or more instructions in a macro.)';
  10221.             sTemp=L_pjdefCode_TEXT;
  10222.             break;
  10223.         case 'pjdefCodeMask':
  10224.             L_pjdefCodeMask_TEXT='(code mask: The format that you define for a work breakdown structure [WBS] code or a custom outline code. The mask specifies the sequence and number of letters or numbers required for each level and the symbol separating the levels.)';
  10225.             sTemp=L_pjdefCodeMask_TEXT;
  10226.             break;
  10227.         case 'pjdefCodePage':
  10228.             L_pjdefCodePage_TEXT='(code page: An internal table that the operating system uses to relate the keys on the keyboard to the characters displayed on the screen. Different code pages provide support for the character sets and keyboard layouts used in different countries/regions.)';
  10229.             sTemp=L_pjdefCodePage_TEXT;
  10230.             break;
  10231.         case 'pjdefCodePane':
  10232.             L_pjdefCodePane_TEXT='(code pane: In Visual Basic for Applications, the window that is used to display, edit, and write module-level and procedure code.)';
  10233.             sTemp=L_pjdefCodePane_TEXT;
  10234.             break;
  10235.         case 'pjdefCollapsing':
  10236.             L_pjdefCollapsing_TEXT='(collapsing: In an outline, hiding the tasks that are subordinate to summary tasks, leaving only the summary tasks visible; this shows only the major phases. Expand and collapse the outline in various usage views to show or hide resource assignments.)';
  10237.             sTemp=L_pjdefCollapsing_TEXT;
  10238.             break;
  10239.         case 'pjdefcolumn_or_row_of_pages':
  10240.             L_pjdefcolumn_or_row_of_pages_TEXT='(column or row of pages: A representation of pages in a preview. When you preview pages to be printed, Project maps the pages in columns [to represent the columns to be printed per page] and rows [to represent the rows to be printed per page].)';
  10241.             sTemp=L_pjdefcolumn_or_row_of_pages_TEXT;
  10242.             break;
  10243.         case 'pjdefCombinationView':
  10244.             L_pjdefCombinationView_TEXT='(combination view: A view containing two views. The bottom pane view shows detailed information about the tasks or resources in the top pane view. For example, the Gantt Chart view could be in the top pane and the Task Form view in the bottom pane.)';
  10245.             sTemp=L_pjdefCombinationView_TEXT;
  10246.             break;
  10247.         case 'pjdefConsolidatedFile':
  10248.             L_pjdefConsolidatedFile_TEXT='(consolidated project: A project containing one or more inserted projects [also known as subprojects]. These can retain links to their source projects and may be linked to one another. A consolidated project is also called a master project.)';
  10249.             sTemp=L_pjdefConsolidatedFile_TEXT;
  10250.             break;
  10251.         case 'pjdefConstraint':
  10252.             L_pjdefConstraint_TEXT='(constraint: A restriction set on the start or finish date of a task. You can specify that a task must start on or finish no later than a particular date. Constraints can be flexible [not tied to a specific date] or inflexible [tied to a specific date].)';
  10253.             sTemp=L_pjdefConstraint_TEXT;
  10254.             break;
  10255.         case 'pjdefContainer':
  10256.             L_pjdefContainer_TEXT='(container: The program or document in which an OLE object that was created in another program or document resides. OLE container refers to an OLE-aware program that can store embedded or linked objects provided by OLE servers.)';
  10257.             sTemp=L_pjdefContainer_TEXT;
  10258.             break;
  10259.         case 'pjdefContingencyPlan':
  10260.             L_pjdefContingencyPlan_TEXT='(contingency plan: A plan that identifies corrective steps to take if a risk event occurs.)';
  10261.             sTemp=L_pjdefContingencyPlan_TEXT;
  10262.             break;
  10263.         case 'pjdefContour':
  10264.             L_pjdefContour_TEXT='(contour: The shape of how scheduled work for an assignment is distributed across time. Use a contour to control how Project schedules the work of a resource. Contour examples include flat, back-loaded, front-loaded, bell, turtle, and more.)';
  10265.             sTemp=L_pjdefContour_TEXT;
  10266.             break;
  10267.         case 'pjdefContractCloseout':
  10268.             L_pjdefContractCloseout_TEXT='(contract closeout: The completion of the contract [such as fixed price or lump sum, cost reimbursable, unit price contracts]. Closeout includes resolving all outstanding issues and items, such as inspections or invoices.)';
  10269.             sTemp=L_pjdefContractCloseout_TEXT;
  10270.             break;
  10271.         case 'pjdefCost':
  10272.             L_pjdefCost_TEXT='(cost: The total scheduled cost for a task, resource, or assignment, or for an entire project. This is sometimes referred to as the current cost. In Project, baseline costs are usually referred to as \"budget.\")';
  10273.             sTemp=L_pjdefCost_TEXT;
  10274.             break;
  10275.         case 'pjdefCostRateTable':
  10276.             L_pjdefCostRateTable_TEXT='(cost rate table: A collection of information about a resource\'s rates, including the standard rate, overtime rate, any per-use cost, and the date when the pay rate takes effect. You can establish up to five different cost rate tables for each resource.)';
  10277.             sTemp=L_pjdefCostRateTable_TEXT;
  10278.             break;
  10279.         case 'pjdefCPI':
  10280.             L_pjdefCPI_TEXT='(CPI: Ratio of budgeted costs of work performed to actual costs of work performed [BCWP/ACWP]. The cumulative CPI [sum of the BCWP for all tasks divided by the sum of the ACWP for all tasks] can be used to predict whether a project will go over budget.)';
  10281.             sTemp=L_pjdefCPI_TEXT;
  10282.             break;
  10283.         case 'pjdefCPM':
  10284.             L_pjdefCPM_TEXT='(CPM: A project management method of calculating the total duration of a project based on individual task durations and their dependencies.)';
  10285.             sTemp=L_pjdefCPM_TEXT;
  10286.             break;
  10287.         case 'pjdefCrash':
  10288.             L_pjdefCrash_TEXT='(crash: To decrease a project\'s overall duration without changing task relationships. Crashing a project typically requires assigning additional resources to tasks.)';
  10289.             sTemp=L_pjdefCrash_TEXT;
  10290.             break;
  10291.         case 'pjdefCriteria':
  10292.             L_pjdefCriteria_TEXT='(criteria: In a filter, the instructions that specify which tasks or resources should be displayed when the filter is applied. For example, the criterion for the Completed Tasks filter is any task that is 100 percent complete.)';
  10293.             sTemp=L_pjdefCriteria_TEXT;
  10294.             break;
  10295.         case 'pjdefCriticalPath':
  10296.             L_pjdefCriticalPath_TEXT='(critical path: The series of tasks that must be completed on schedule for a project to finish on schedule. Each task on the critical path is a critical task.)';
  10297.             sTemp=L_pjdefCriticalPath_TEXT;
  10298.             break;
  10299.         case 'pjdefCriticalTask':
  10300.             L_pjdefCriticalTask_TEXT='(critical task: A task that must be completed on schedule for the project to finish on time. If a critical task is delayed, the project completion date might also be delayed. A series of critical tasks makes up a project\'s critical path.)';
  10301.             sTemp=L_pjdefCriticalTask_TEXT;
  10302.             break;
  10303.         case 'pjdefCrossProjectLinking':
  10304.             L_pjdefCrossProjectLinking_TEXT='(cross-project links: Dependencies between tasks in different Project files, also called external dependencies. Project plans do not need to have a master project-subproject relationship to include a cross-project link.)';
  10305.             sTemp=L_pjdefCrossProjectLinking_TEXT;
  10306.             break;
  10307.         case 'pjdefCrosstabReport':
  10308.             L_pjdefCrosstabReport_TEXT='(crosstab report: Printed information about tasks and resources over a specified time period. There are five predefined crosstab reports in Project: Cash Flow, Crosstab, Resource Usage, Task Usage, and Who Does What When.)';
  10309.             sTemp=L_pjdefCrosstabReport_TEXT;
  10310.             break;
  10311.         case 'pjdefCSV':
  10312.             L_pjdefCSV_TEXT='(CSV: The comma-separated values [CSV] file format is an ASCII, record-based text format in which each field is separated by a list-separator character, usually a comma or semicolon. Each task or resource record ends with a carriage return and linefeed.)';
  10313.             sTemp=L_pjdefCSV_TEXT;
  10314.             break;
  10315.         case 'pjdefCumCPI':
  10316.             L_pjdefCumCPI_TEXT='(CPI: In earned value, the sum of all the budgeted costs of work performed [BCWP] for all tasks divided by the sum of all the actual costs of work performed [ACWP]. CPI is often used to predict whether a project will go over budget, and by how much.)';
  10317.             sTemp=L_pjdefCumCPI_TEXT;
  10318.             break;
  10319.         case 'pjdefCurrencyField':
  10320.             L_pjdefCurrencyField_TEXT='(currency field: A type of field whose content is expressed as a cost. Examples include the Actual Cost and Fixed Cost fields. The maximum value allowed in this field is 999,999,999,999.99.)';
  10321.             sTemp=L_pjdefCurrencyField_TEXT;
  10322.             break;
  10323.         case 'pjdefCurrencyRateField':
  10324.             L_pjdefCurrencyRateField_TEXT='(currency rate field: A type of field whose content is a rate of pay [for example, $20 per hour]. Examples include the Standard Rate and Overtime Rate fields. The maximum value allowed in this field is 999,999,999.99.)';
  10325.             sTemp=L_pjdefCurrencyRateField_TEXT;
  10326.             break;
  10327.         case 'pjdefCurrentDateLine':
  10328.             L_pjdefCurrentDateLine_TEXT='(current date line: The dotted vertical line in the chart portion of a Gantt Chart or Resource Graph, indicating the current date.)';
  10329.             sTemp=L_pjdefCurrentDateLine_TEXT;
  10330.             break;
  10331.         case 'pjdefcustom_form':
  10332.             L_pjdefcustom_form_TEXT='(custom form: A form [a type of view that provides details about an individual task or resource] that you customize to better fit your needs.)';
  10333.             sTemp=L_pjdefcustom_form_TEXT;
  10334.             break;
  10335.         case 'pjdefCV':
  10336.             L_pjdefCV_TEXT='(CV: The difference between the budgeted cost of work performed [BCWP] on a task and the actual cost of work performed [ACWP]. If the CV is positive, the cost is currently under the budgeted amount; if the CV is negative, the task is currently over budget.)';
  10337.             sTemp=L_pjdefCV_TEXT;
  10338.             break;
  10339.         case 'pjdefdata_access_page':
  10340.             L_pjdefdata_access_page_TEXT='(data access page: A special type of Web page that is designed for viewing and working with data over the Internet or an intranet.)';
  10341.             sTemp=L_pjdefdata_access_page_TEXT;
  10342.             break;
  10343.         case 'pjdefDateField':
  10344.             L_pjdefDateField_TEXT='(date field: A type of field whose content is a date. Examples include the Baseline Start and Early Finish fields.)';
  10345.             sTemp=L_pjdefDateField_TEXT;
  10346.             break;
  10347.         case 'pjdefDDE':
  10348.             L_pjdefDDE_TEXT='(DDE: A protocol for the active exchange of data copied among documents. When the information changes in the source document, it can be updated in the copy automatically. Consult the documentation for your other programs to see whether they support DDE.)';
  10349.             sTemp=L_pjdefDDE_TEXT;
  10350.             break;
  10351.         case 'pjdefDeadline':
  10352.             L_pjdefDeadline_TEXT='(deadline: A target date indicating when you want a task to be completed. If the deadline date passes and the task is not completed, Project displays an indicator.)';
  10353.             sTemp=L_pjdefDeadline_TEXT;
  10354.             break;
  10355.         case 'pjdefDefaultValue':
  10356.             L_pjdefDefaultValue_TEXT='(default value: The value that Project assigns to a field automatically, if you do not supply your own value.)';
  10357.             sTemp=L_pjdefDefaultValue_TEXT;
  10358.             break;
  10359.         case 'pjdefDelay':
  10360.             L_pjdefDelay_TEXT='(delay: The amount of time between the scheduled start of a task and the time when work should actually begin on the task; it is often used to resolve resource overallocations. There are two types of delay: assignment delay and leveling delay.)';
  10361.             sTemp=L_pjdefDelay_TEXT;
  10362.             break;
  10363.         case 'pjdefDeliverable':
  10364.             L_pjdefDeliverable_TEXT='(deliverable: A tangible and measurable result, outcome, or item that must be produced to complete a project or part of a project. Typically, the project team and project stakeholders agree on project deliverables before the project begins.)';
  10365.             sTemp=L_pjdefDeliverable_TEXT;
  10366.             break;
  10367.         case 'pjdefDemoting':
  10368.             L_pjdefDemoting_TEXT='(indenting: Moving a task to a lower outline level [to the right] in the Task Name field. When you indent a task, it becomes a subtask of the nearest preceding task at a higher outline level.)';
  10369.             sTemp=L_pjdefDemoting_TEXT;
  10370.             break;
  10371.         case 'pjdefDesignMode':
  10372.             L_pjdefDesignMode_TEXT='(design and run modes: A mode in which you can design custom dialog boxes and controls and write code. Unlike run mode, you do not interact with your program the way a user would; events do not fire and event procedures do not automatically run.)';
  10373.             sTemp=L_pjdefDesignMode_TEXT;
  10374.             break;
  10375.         case 'pjdefDestination':
  10376.             L_pjdefDestination_TEXT='(destination: Where moved, copied, imported, or exported information is inserted; also a view, table, document, or another program. In OLE, the document or program where a linked object resides; also, the document that a hyperlink leads to.)';
  10377.             sTemp=L_pjdefDestination_TEXT;
  10378.             break;
  10379.         case 'pjdefDetails':
  10380.             L_pjdefDetails_TEXT='(details: Columns in the Task Usage and Resource Usage views, the Resource Graph view, and the form views that display useful information regarding a task, resource, or assignment.)';
  10381.             sTemp=L_pjdefDetails_TEXT;
  10382.             break;
  10383.         case 'pjdefDiacritics':
  10384.             L_pjdefDiacritics_TEXT='(diacritics: In right-to-left languages, markings that are printed above or below vowels that specify how to pronounce the vowels.)';
  10385.             sTemp=L_pjdefDiacritics_TEXT;
  10386.             break;
  10387.         case 'pjdefdigital_certificate':
  10388.             L_pjdefdigital_certificate_TEXT='(digital certificate: An attachment for a file, macro project, or e-mail message that vouches for its authenticity, provides secure encryption, or supplies a verifiable signature. To digitally sign macro projects, you must install a digital certificate.)';
  10389.             sTemp=L_pjdefdigital_certificate_TEXT;
  10390.             break;
  10391.         case 'pjdefdigitally_sign':
  10392.             L_pjdefdigitally_sign_TEXT='(digitally sign: To provide an electronic, encryption-based, secure stamp of authentication on a macro or file. This signature confirms that the macro or file originated from the signer and has not been altered.)';
  10393.             sTemp=L_pjdefdigitally_sign_TEXT;
  10394.             break;
  10395.         case 'pjdefDimmed':
  10396.             L_pjdefDimmed_TEXT='(dimmed: An item in a program that is unavailable. Sometimes an item is dimmed because it does not currently apply to the operation that you\'re trying to perform. Items are also dimmed when your program is not set up to run the dimmed item.)';
  10397.             sTemp=L_pjdefDimmed_TEXT;
  10398.             break;
  10399.         case 'pjdefdirection':
  10400.             L_pjdefdirection_TEXT='(direction: Specifies the reading order, alignment, and visual appearance of right-to-left text and documents, regardless of the keyboard language. Direction also describes how the user interface, controls, and other screen objects are oriented.)';
  10401.             sTemp=L_pjdefdirection_TEXT;
  10402.             break;
  10403.         case 'pjdefDividerBar':
  10404.             L_pjdefDividerBar_TEXT='(divider bar: The vertical bar that separates the chart from the table or legend in the Gantt Chart, Resource Graph, Resource Usage, and Task Usage views.)';
  10405.             sTemp=L_pjdefDividerBar_TEXT;
  10406.             break;
  10407.         case 'pjdefdocked_toolbar':
  10408.             L_pjdefdocked_toolbar_TEXT='(docked toolbar: A toolbar that is attached to one edge of the program window. When you drag a toolbar below the program title bar or to the left, right, or bottom edge of the program window, the toolbar snaps into place on the edge of the program window.)';
  10409.             sTemp=L_pjdefdocked_toolbar_TEXT;
  10410.             break;
  10411.         case 'pjdefdocument_library':
  10412.             L_pjdefdocument_library_TEXT='(document library: A folder in which a collection of files is shared and the files often use the same template. Each file in a library is associated with user-defined information that is displayed in the content listing for that library.)';
  10413.             sTemp=L_pjdefdocument_library_TEXT;
  10414.             break;
  10415.         case 'pjdefdriving_resource':
  10416.             L_pjdefdriving_resource_TEXT='(driving resource: The resource whose assignment to a task determines the finish date of the task.)';
  10417.             sTemp=L_pjdefdriving_resource_TEXT;
  10418.             break;
  10419.         case 'pjdefDuration':
  10420.             L_pjdefDuration_TEXT='(duration: The total span of active working time that is required to complete a task. This is generally the amount of working time from the start to finish of a task, as defined by the project and resource calendar.)';
  10421.             sTemp=L_pjdefDuration_TEXT;
  10422.             break;
  10423.         case 'pjdefDurationField':
  10424.             L_pjdefDurationField_TEXT='(duration field: A type of field whose content is expressed as a duration of time. Examples include the Work, Duration, and Delay fields. A duration field includes the duration unit, such as hour, day, or week.)';
  10425.             sTemp=L_pjdefDurationField_TEXT;
  10426.             break;
  10427.         case 'pjdefEAC':
  10428.             L_pjdefEAC_TEXT='(EAC: The expected total cost of a task or project, based on performance as of the status date. EAC is calculated as follows: EAC = ACWP + (BAC-BCWP)/CPI.)';
  10429.             sTemp=L_pjdefEAC_TEXT;
  10430.             break;
  10431.         case 'pjdefEarlyFinDate':
  10432.             L_pjdefEarlyFinDate_TEXT='(early finish date: The earliest date that a task could possibly finish, based on early finish dates of predecessor and successor tasks, other constraints, and any leveling delay.)';
  10433.             sTemp=L_pjdefEarlyFinDate_TEXT;
  10434.             break;
  10435.         case 'pjdefEarnedValue':
  10436.             L_pjdefEarnedValue_TEXT='(earned value: A measure of the cost of work performed up to the status date or current date. Earned value uses your original cost estimates saved with a baseline and your actual work to date to show whether the actual costs incurred are on budget.)';
  10437.             sTemp=L_pjdefEarnedValue_TEXT;
  10438.             break;
  10439.         case 'pjdefEffortdrivenScheduling':
  10440.             L_pjdefEffortdrivenScheduling_TEXT='(effort-driven scheduling: The default method of scheduling in Project; the duration of a task shortens or lengthens as resources are added or removed from a task, while the amount of effort necessary to complete a task remains unchanged.)';
  10441.             sTemp=L_pjdefEffortdrivenScheduling_TEXT;
  10442.             break;
  10443.         case 'pjdefElapsedDuration':
  10444.             L_pjdefElapsedDuration_TEXT='(elapsed duration: The amount of time that a task will take to finish, based on a 24-hour day and a 7-day week, including holidays and other nonworking days. For example: emin = elapsed minute, ehr = elapsed hour, eday = elapsed day, ewk = elapsed week.)';
  10445.             sTemp=L_pjdefElapsedDuration_TEXT;
  10446.             break;
  10447.         case 'pjdefe-mail_system':
  10448.             L_pjdefemail_system_TEXT='(e-mail system: A group of computers connected in a network capable of exchanging electronic mail messages. To exchange team collaboration messages, each computer in the network must have a MAPI-compliant, 32-bit e-mail system, such as Outlook.)';
  10449.             sTemp=L_pjdefemail_system_TEXT;
  10450.             break;
  10451.         case 'pjdefEmbed':
  10452.             L_pjdefEmbed_TEXT='(embedding: The placing of an OLE object into a container document. You can edit an embedded object from within the container document by using a program associated with the object.)';
  10453.             sTemp=L_pjdefEmbed_TEXT;
  10454.             break;
  10455.         case 'pjdefEmbeddedObject':
  10456.             L_pjdefEmbeddedObject_TEXT='(embedded object: Information [the object] inserted in a file [the destination file]. Once embedded, the object becomes part of the destination file. When you double-click an embedded object, it opens in the program it was created in [the source program].)';
  10457.             sTemp=L_pjdefEmbeddedObject_TEXT;
  10458.             break;
  10459.         case 'pjdefEmpty':
  10460.             L_pjdefEmpty_TEXT='(empty: Indicates that no beginning value has been assigned to a Variant variable. An empty variable is represented as 0 in a numeric context or a zero-length string [\"\"] in a string context.)';
  10461.             sTemp=L_pjdefEmpty_TEXT;
  10462.             break;
  10463.         case 'pjdefEntered':
  10464.             L_pjdefEntered_TEXT='(entered field: A field in which you may type or edit information. This is in contrast with a calculated field, in which Project calculates and enters information.)';
  10465.             sTemp=L_pjdefEntered_TEXT;
  10466.             break;
  10467.         case 'pjdefenterprise_global_template':
  10468.             L_pjdefenterprise_global_template_TEXT='(enterprise global template: A collection of default settings, such as views, tables, and fields, that are used by all projects across the organization. These settings exist within a special project in Project Server.)';
  10469.             sTemp=L_pjdefenterprise_global_template_TEXT;
  10470.             break;
  10471.         case 'pjdefenterprise_resources':
  10472.             L_pjdefenterprise_resources_TEXT='(enterprise resources: Resources that are part of an organization\'s entire list of resources. Enterprise resources can be shared across projects.)';
  10473.             sTemp=L_pjdefenterprise_resources_TEXT;
  10474.             break;
  10475.         case 'pjdefEnumField':
  10476.             L_pjdefEnumField_TEXT='(enumerated field: A type of field whose content is selected from a list of predefined choices. For example, in the Accrue At field you can select the way resource costs are accrued from a list that includes Start, Prorated, and End.)';
  10477.             sTemp=L_pjdefEnumField_TEXT;
  10478.             break;
  10479.         case 'pjdefEstimatedDuration':
  10480.             L_pjdefEstimatedDuration_TEXT='(estimated duration: A duration for which you have only enough information to determine a tentative value. So that its status is clearly visible, an estimated duration is clearly marked by a question mark immediately following the duration unit.)';
  10481.             sTemp=L_pjdefEstimatedDuration_TEXT;
  10482.             break;
  10483.         case 'pjdefException':
  10484.             L_pjdefException_TEXT='(exception: An instance in which a task or resource calendar differs from the project calendar. An example is a resource that must work on Saturdays, but for which the project calendar does not include working time to cover these instances.)';
  10485.             sTemp=L_pjdefException_TEXT;
  10486.             break;
  10487.         case 'pjdefExpanding':
  10488.             L_pjdefExpanding_TEXT='(expanding: In an outline, making visible the collapsed tasks that are immediately subordinate to summary tasks. You can also expand and collapse the outline in the Resource Usage view and the Task Usage view to hide or show resource assignments.)';
  10489.             sTemp=L_pjdefExpanding_TEXT;
  10490.             break;
  10491.         case 'pjdefExpectedDuration':
  10492.             L_pjdefExpectedDuration_TEXT='(expected duration: The total span of active working time expected for a task, that is, the amount of time from the expected start to the expected finish of a task.)';
  10493.             sTemp=L_pjdefExpectedDuration_TEXT;
  10494.             break;
  10495.         case 'pjdefExporting':
  10496.             L_pjdefExporting_TEXT='(exporting: Transferring data from Project to another program, such as Excel. When you export data, you choose or create a map that specifies the relationship between the fields in Project and the columns in the ouptut file.)';
  10497.             sTemp=L_pjdefExporting_TEXT;
  10498.             break;
  10499.         case 'pjdefExportMap':
  10500.             L_pjdefExportMap_TEXT='(export/import map: A set of instructions that maps out for Project exactly what types of data you want to export or import, in what order, and their field names in the destination format. Project comes with default export/import maps.)';
  10501.             sTemp=L_pjdefExportMap_TEXT;
  10502.             break;
  10503.         case 'pjdefExternalDependency':
  10504.             L_pjdefExternalDependency_TEXT='(external dependency: A relationship in which the start or finish date of a task depends on a task in another project.)';
  10505.             sTemp=L_pjdefExternalDependency_TEXT;
  10506.             break;
  10507.         case 'pjdefExternalPredecessors':
  10508.             L_pjdefExternalPredecessors_TEXT='(external predecessors: A predecessor to a task in the current project that resides in another project, represented by a task that appears dimmed in the task list.)';
  10509.             sTemp=L_pjdefExternalPredecessors_TEXT;
  10510.             break;
  10511.         case 'pjdefExternalSuccessors':
  10512.             L_pjdefExternalSuccessors_TEXT='(external successors: A successor to a task in the current project that resides in another project, represented by a task that appears dimmed in the task list.)';
  10513.             sTemp=L_pjdefExternalSuccessors_TEXT;
  10514.             break;
  10515.         case 'pjdefExternalTask':
  10516.             L_pjdefExternalTask_TEXT='(external task: A task that represents a linked task in another project, providing an easy way to review the attributes of linked tasks without switching between projects. An external task can be changed only in the source project.)';
  10517.             sTemp=L_pjdefExternalTask_TEXT;
  10518.             break;
  10519.         case 'pjdefField':
  10520.             L_pjdefField_TEXT='(field: A location in a sheet, form, or chart that contains a specific kind of information about a task, resource, or assignment. For example, in a sheet, each column is a field. In a form, a field is a named box or a place in a column.)';
  10521.             sTemp=L_pjdefField_TEXT;
  10522.             break;
  10523.         case 'pjdefFileFormat':
  10524.             L_pjdefFileFormat_TEXT='(file format: The particular way in which information is stored in a file. Different programs use different file formats and file name extensions to indicate the format.)';
  10525.             sTemp=L_pjdefFileFormat_TEXT;
  10526.             break;
  10527.         case 'pjdefFilename':
  10528.             L_pjdefFilename_TEXT='(file name: The name of a file. Valid names can contain up to 255 characters, can have any combination of letters or numbers, and can be followed by an extension [a period and one to three characters]. See Windows Help for other allowed characters.)';
  10529.             sTemp=L_pjdefFilename_TEXT;
  10530.             break;
  10531.         case 'pjdefFillHandle':
  10532.             L_pjdefFillHandle_TEXT='(fill handle: The small square in the corner of the selection in a sheet. When you point to the fill handle, the pointer changes to a black cross. To copy contents to adjacent fields or to repeat selected information, drag the fill handle.)';
  10533.             sTemp=L_pjdefFillHandle_TEXT;
  10534.             break;
  10535.         case 'pjdefFilter':
  10536.             L_pjdefFilter_TEXT='(filter: Specifies which task or resource information should be displayed or highlighted in a view. For example, when you apply the Critical filter, only critical tasks are displayed.)';
  10537.             sTemp=L_pjdefFilter_TEXT;
  10538.             break;
  10539.         case 'pjdefFinishDate':
  10540.             L_pjdefFinishDate_TEXT='(finish date: The date that a task is scheduled to be completed. This date is based on the task\'s start date, duration, calendars, predecessor dates, task dependencies, and constraints.)';
  10541.             sTemp=L_pjdefFinishDate_TEXT;
  10542.             break;
  10543.         case 'pjdeffirewall':
  10544.             L_pjdeffirewall_TEXT='(firewall: A combination of hardware and software that provides a security system, usually to prevent unauthorized access from outside to an internal network or intranet.)';
  10545.             sTemp=L_pjdeffirewall_TEXT;
  10546.             break;
  10547.         case 'pjdefFixedConsumptionRate':
  10548.             L_pjdefFixedConsumptionRate_TEXT='(fixed material consumption: Absolute quantity of a material resource to be used to complete an assignment. A fixed consumption rate indicates that the amount of material used will be constant, regardless of changes to task duration or assignment length.)';
  10549.             sTemp=L_pjdefFixedConsumptionRate_TEXT;
  10550.             break;
  10551.         case 'pjdefFixedCost':
  10552.             L_pjdefFixedCost_TEXT='(fixed cost: A set cost for a task that remains constant regardless of the task duration or the work performed by a resource.)';
  10553.             sTemp=L_pjdefFixedCost_TEXT;
  10554.             break;
  10555.         case 'pjdefFixedDate':
  10556.             L_pjdefFixedDate_TEXT='(fixed date: A date to which a task is tied either because the date was entered in the Actual Start or Actual Finish field or because the task is constrained by an inflexible constraint.)';
  10557.             sTemp=L_pjdefFixedDate_TEXT;
  10558.             break;
  10559.         case 'pjdefFixeddurationResource':
  10560.             L_pjdefFixeddurationResource_TEXT='(fixed-unit task: A task in which the assigned units [or resources] is a fixed value and any changes to the amount of work or the task\'s duration do not affect the task\'s units. This is calculated as follows: Duration x Units = Work.)';
  10561.             sTemp=L_pjdefFixeddurationResource_TEXT;
  10562.             break;
  10563.         case 'pjdefFixedDurationScheduling':
  10564.             L_pjdefFixedDurationScheduling_TEXT='(fixed-duration scheduling: A scheduling method in which the duration for a task remains the same regardless of the number of resources assigned to the task.)';
  10565.             sTemp=L_pjdefFixedDurationScheduling_TEXT;
  10566.             break;
  10567.         case 'pjdefFixeddurationTask':
  10568.             L_pjdefFixeddurationTask_TEXT='(fixed-duration task: A task in which the duration is a fixed value and any changes to the work or the assigned units [that is, resources] don\'t affect the task\'s duration. This is calculated as follows: Duration x Units = Work.)';
  10569.             sTemp=L_pjdefFixeddurationTask_TEXT;
  10570.             break;
  10571.         case 'pjdefFixedworkTask':
  10572.             L_pjdefFixedworkTask_TEXT='(fixed-work task: A task in which the amount of work is a fixed value and any changes to the task\'s duration or the number of assigned units [or resources] do not affect the task\'s work. This is calculated as follows: Duration x Units = Work.)';
  10573.             sTemp=L_pjdefFixedworkTask_TEXT;
  10574.             break;
  10575.         case 'pjdeffloating_toolbars':
  10576.             L_pjdeffloating_toolbars_TEXT='(floating toolbar: A toolbar that is not attached to the edge of the program window. You can change the shape of some floating toolbars.)';
  10577.             sTemp=L_pjdeffloating_toolbars_TEXT;
  10578.             break;
  10579.         case 'pjdefFooter':
  10580.             L_pjdefFooter_TEXT='(footer: Text that appears at the bottom of a printed page. A footer typically contains information such as page number, total page count, and date.)';
  10581.             sTemp=L_pjdefFooter_TEXT;
  10582.             break;
  10583.         case 'pjdefForm':
  10584.             L_pjdefForm_TEXT='(form: A type of view that gives you detailed information about an individual task or resource.)';
  10585.             sTemp=L_pjdefForm_TEXT;
  10586.             break;
  10587.         case 'pjdefFreeSlack':
  10588.             L_pjdefFreeSlack_TEXT='(free slack: The amount of time that a task can be delayed without delaying its successor tasks. For a task without successors, free slack is the amount of time that the task can be delayed without delaying the finish date of the project.)';
  10589.             sTemp=L_pjdefFreeSlack_TEXT;
  10590.             break;
  10591.         case 'pjdefgantt_bar_type':
  10592.             L_pjdefgantt_bar_type_TEXT='(Gantt bar type: A Gantt bar representing a specific kind of information, for example, summary or split tasks or progress on a task. A type is distinguished from other types by its appearance and can include associated text, such as start and finish dates.)';
  10593.             sTemp=L_pjdefgantt_bar_type_TEXT;
  10594.             break;
  10595.         case 'pjdefGanttBar':
  10596.             L_pjdefGanttBar_TEXT='(Gantt bar: A graphical element on the chart portion of the Gantt Chart view representing the duration of a task.)';
  10597.             sTemp=L_pjdefGanttBar_TEXT;
  10598.             break;
  10599.         case 'pjdefgeneral_alignment':
  10600.             L_pjdefgeneral_alignment_TEXT='(general alignment: A format that normally left aligns text and right aligns numbers. When right-to-left features are active, general alignment is extended to include Text mode [always available] and Interface mode [sometimes available].)';
  10601.             sTemp=L_pjdefgeneral_alignment_TEXT;
  10602.             break;
  10603.         case 'pjdefgeneric_resources':
  10604.             L_pjdefgeneric_resources_TEXT='(generic resources: Placeholder resources that are used to specify the skills required for a specific task.)';
  10605.             sTemp=L_pjdefgeneric_resources_TEXT;
  10606.             break;
  10607.         case 'pjdefGhostTask':
  10608.             L_pjdefGhostTask_TEXT='(ghost task: Also called an external task. Shown as a dimmed task bar in the chart portion and a dimmed row of task information in the task list of the Gantt Chart view to represent dependency to a task in another project.)';
  10609.             sTemp=L_pjdefGhostTask_TEXT;
  10610.             break;
  10611.         case 'pjdefGIFImageFile':
  10612.             L_pjdefGIFImageFile_TEXT='(GIF file: A compressed graphics file format that Web browsers can display as inline graphics. GIF is widely used for transmitting images across the Internet.)';
  10613.             sTemp=L_pjdefGIFImageFile_TEXT;
  10614.             break;
  10615.         case 'pjdefGlobalFile':
  10616.             L_pjdefGlobalFile_TEXT='(global file: A Project file [Global.mpt] that contains information you can use for different projects. Information in a global file can include views, calendars, forms, reports, tables, filters, toolbars, menu bars, macros, and options settings.)';
  10617.             sTemp=L_pjdefGlobalFile_TEXT;
  10618.             break;
  10619.         case 'pjdefGrade':
  10620.             L_pjdefGrade_TEXT='(grade: A rank or category assigned to a material resource that denotes functional use but not level of quality. A low-grade resource is not necessarily a low-quality resource.)';
  10621.             sTemp=L_pjdefGrade_TEXT;
  10622.             break;
  10623.         case 'pjdefGraph':
  10624.             L_pjdefGraph_TEXT='(graph: A view [such as the Resource Graph] that presents schedule information graphically.)';
  10625.             sTemp=L_pjdefGraph_TEXT;
  10626.             break;
  10627.         case 'pjdefGraphicArea':
  10628.             L_pjdefGraphicArea_TEXT='(graphics area: An area in Project that can display picture information from another document or program, including static pictures and embedded and linked objects.)';
  10629.             sTemp=L_pjdefGraphicArea_TEXT;
  10630.             break;
  10631.         case 'pjdefGridlines':
  10632.             L_pjdefGridlines_TEXT='(gridlines: The horizontal and vertical lines that appear in many Project views. You can change the patterns and colors of gridlines, and you can control the interval at which different patterns and colors occur.)';
  10633.             sTemp=L_pjdefGridlines_TEXT;
  10634.             break;
  10635.         case 'pjdefGrouped':
  10636.             L_pjdefGrouped_TEXT='(group: To combine or rearrange tasks or resources in a project according to specific criteria, for example, task duration, priority, resource overallocation, or finish date; do not confuse this with the Group field, which is a resource field.)';
  10637.             sTemp=L_pjdefGrouped_TEXT;
  10638.             break;
  10639.         case 'pjdefHardConstraint':
  10640.             L_pjdefHardConstraint_TEXT='(inflexible constraint: A constraint that is inflexible because it ties a task to a date. The inflexible constraints are Must Finish On, Must Start On, Finish No Earlier Than, Finish No Later Than, Start No Earlier Than, and Start No Later Than.)';
  10641.             sTemp=L_pjdefHardConstraint_TEXT;
  10642.             break;
  10643.         case 'pjdefHeader':
  10644.             L_pjdefHeader_TEXT='(header: Text that appears at the top of a printed page. A header typically contains information such as the project or company name and the project start and finish dates.)';
  10645.             sTemp=L_pjdefHeader_TEXT;
  10646.             break;
  10647.         case 'pjdefHelpWindow':
  10648.             L_pjdefHelpWindow_TEXT='(Help window: The area in which Project Help is displayed. The Help window remains open until you close it.)';
  10649.             sTemp=L_pjdefHelpWindow_TEXT;
  10650.             break;
  10651.         case 'pjdefHighlightingFilter':
  10652.             L_pjdefHighlightingFilter_TEXT='(highlighting filter: A filter that displays all tasks or resources and highlights the tasks or resources that match the filter criteria.)';
  10653.             sTemp=L_pjdefHighlightingFilter_TEXT;
  10654.             break;
  10655.         case 'pjdefHTML':
  10656.             L_pjdefHTML_TEXT='(HTML: An acronym for Hypertext Markup Language, which is a formatting convention for presenting text and graphics on the World Wide Web.)';
  10657.             sTemp=L_pjdefHTML_TEXT;
  10658.             break;
  10659.         case 'pjdefHyperlink':
  10660.             L_pjdefHyperlink_TEXT='(hyperlink: A portion of text, distinguished by a color, that contains a link to another file or a location within a file. When you click the hyperlink, a Web browser will search for and display the document that is associated with the hyperlink.)';
  10661.             sTemp=L_pjdefHyperlink_TEXT;
  10662.             break;
  10663.         case 'pjdefhyperlink_display_name':
  10664.             L_pjdefhyperlink_display_name_TEXT='(hyperlink display name: A descriptive phrase, rather than a URL address, that appears in an online document to better describe the hyperlink\'s destination. For example, an appropriate hyperlink display name for http://www.microsoft.com would be Microsoft.)';
  10665.             sTemp=L_pjdefhyperlink_display_name_TEXT;
  10666.             break;
  10667.         case 'pjdefHyperlinkAddress':
  10668.             L_pjdefHyperlinkAddress_TEXT='(hyperlink address: The address of a hyperlink\'s destination file, which is either a URL address or a UNC address. When you click the hyperlink, the destination file defined in the hyperlink address will open in your Web browser or program.)';
  10669.             sTemp=L_pjdefHyperlinkAddress_TEXT;
  10670.             break;
  10671.         case 'pjdefHyperlinkRepresentation':
  10672.             L_pjdefHyperlinkRepresentation_TEXT='(hyperlink representation: A descriptive phrase that you can type in the Hyperlink field to better describe the hyperlink\'s destination. A hyperlink representation, when clicked, will go to the destination file defined in the Hyperlink Address field.)';
  10673.             sTemp=L_pjdefHyperlinkRepresentation_TEXT;
  10674.             break;
  10675.         case 'pjdefHyperlinkSubAddress':
  10676.             L_pjdefHyperlinkSubAddress_TEXT='(hyperlink subaddress: A field located in the Hyperlink table where you can specify an exact location in the destination file. This location can be a Project view and ID number, a Word bookmark, an Excel cell definition, and so on.)';
  10677.             sTemp=L_pjdefHyperlinkSubAddress_TEXT;
  10678.             break;
  10679.         case 'pjdefID_numbers':
  10680.             L_pjdefID_numbers_TEXT='(ID number: The number that Project assigns to each task, resource, or assignment as you add them to the project.)';
  10681.             sTemp=L_pjdefID_numbers_TEXT;
  10682.             break;
  10683.         case 'pjdefIME':
  10684.             L_pjdefIME_TEXT='(IME: A program that enters Asian text [Traditional Chinese, Simplified Chinese, Japanese, or Korean] into programs by converting keystrokes into complex Asian characters. The IME [input method editor] is treated as an alternate type of keyboard layout.)';
  10685.             sTemp=L_pjdefIME_TEXT;
  10686.             break;
  10687.         case 'pjdefImporting':
  10688.             L_pjdefImporting_TEXT='(importing: Transferring data into Project from a source program, such as Excel. When you import data, you choose a map that defines how the data in the source program should be mapped to information in Project.)';
  10689.             sTemp=L_pjdefImporting_TEXT;
  10690.             break;
  10691.         case 'pjdefIndicatorField':
  10692.             L_pjdefIndicatorField_TEXT='(indicators field: A field containing a graphical indicator that provides information about the state of an assignment, resource, or task. For example, a check mark indicator shows that a task is completed.)';
  10693.             sTemp=L_pjdefIndicatorField_TEXT;
  10694.             break;
  10695.         case 'pjdefIndicatorFlag':
  10696.             L_pjdefIndicatorFlag_TEXT='(indicators: Small icons representing information for a task or resource that are displayed in the Indicators field. The Indicators field is located to the right of the ID field and appears in a number of tables.)';
  10697.             sTemp=L_pjdefIndicatorFlag_TEXT;
  10698.             break;
  10699.         case 'pjdefInsertedProject':
  10700.             L_pjdefInsertedProject_TEXT='(inserted project: A project file consolidated into another project file [the master project]. Also called a subproject. The inserted project appears as a summary task in the master project.)';
  10701.             sTemp=L_pjdefInsertedProject_TEXT;
  10702.             break;
  10703.         case 'pjdefIntegerField':
  10704.             L_pjdefIntegerField_TEXT='(integer field: A type of field whose content is a whole number. Examples include the ID and Unique ID fields.)';
  10705.             sTemp=L_pjdefIntegerField_TEXT;
  10706.             break;
  10707.         case 'pjdefIntegerListField':
  10708.             L_pjdefIntegerListField_TEXT='(integer list field: A type of field whose content is a list of whole numbers separated by the list separator character, typically a comma. Examples include the Predecessors and Successors fields.)';
  10709.             sTemp=L_pjdefIntegerListField_TEXT;
  10710.             break;
  10711.         case 'pjdefInteractiveFilter':
  10712.             L_pjdefInteractiveFilter_TEXT='(interactive filter: A filter that displays a dialog box for entering filter criteria each time that you apply the filter. For example, the Using Resource filter displays a dialog box in which you enter a resource name.)';
  10713.             sTemp=L_pjdefInteractiveFilter_TEXT;
  10714.             break;
  10715.         case 'pjdefInterimPlan':
  10716.             L_pjdefInterimPlan_TEXT='(interim plan: A set of task start and finish dates that you can save at certain stages of your project. You can compare an interim plan with the baseline plan or current plan to monitor project progress or slippage. You can save up to 10 interim plans.)';
  10717.             sTemp=L_pjdefInterimPlan_TEXT;
  10718.             break;
  10719.         case 'pjdefInternet':
  10720.             L_pjdefInternet_TEXT='(Internet: A worldwide network of thousands of smaller computer networks and millions of commercial, educational, government, and personal computers. Also known as the World Wide Web [WWW].)';
  10721.             sTemp=L_pjdefInternet_TEXT;
  10722.             break;
  10723.         case 'pjdefInternetServiceProvider':
  10724.             L_pjdefInternetServiceProvider_TEXT='(ISP: A company that provides other companies, organizations, or individuals with access to, or presence on, the Internet.)';
  10725.             sTemp=L_pjdefInternetServiceProvider_TEXT;
  10726.             break;
  10727.         case 'pjdefIntranet':
  10728.             L_pjdefIntranet_TEXT='(intranet: Any network that provides similar services within an organization to those provided by the Internet. An organization\'s intranet may or may not be connected to the Internet; its information might be distributed only within the company.)';
  10729.             sTemp=L_pjdefIntranet_TEXT;
  10730.             break;
  10731.         case 'pjdefItem':
  10732.             L_pjdefItem_TEXT='(item: The basic element that holds information in Outlook [similar to a file in other programs]. Items include e-mail messages, appointments, contacts, tasks, journal entries, and notes.)';
  10733.             sTemp=L_pjdefItem_TEXT;
  10734.             break;
  10735.         case 'pjdefKashidas':
  10736.             L_pjdefKashidas_TEXT='(Kashidas: Special characters that are used to extend the joiner between two Arabic characters. Used to improve the appearance of justified text by visually lengthening words rather than increasing the spacing between words.)';
  10737.             sTemp=L_pjdefKashidas_TEXT;
  10738.             break;
  10739.         case 'pjdefkeyword':
  10740.             L_pjdefkeyword_TEXT='(keyword: A word or phrase that identifies important information in a project file. You can use keywords to index files that you created in Project.)';
  10741.             sTemp=L_pjdefkeyword_TEXT;
  10742.             break;
  10743.         case 'pjdefLagTime':
  10744.             L_pjdefLagTime_TEXT='(lag time: A delay between tasks that have a dependency. For example, if you need a two-day delay between the finish of one task and the start of another, you can establish a finish-to-start dependency and specify a two-day lag time [has a positive value].)';
  10745.             sTemp=L_pjdefLagTime_TEXT;
  10746.             break;
  10747.         case 'pjdefLateFinDate':
  10748.             L_pjdefLateFinDate_TEXT='(late finish date: The latest date that a task can finish without delaying the finish of the project. It is based on the task\'s late start date, as well as the late start and late finish dates of predecessor and successor tasks, and other constraints.)';
  10749.             sTemp=L_pjdefLateFinDate_TEXT;
  10750.             break;
  10751.         case 'pjdefLeadTime':
  10752.             L_pjdefLeadTime_TEXT='(lead time: An overlap between tasks that have a dependency. For example, if a task can start when its predecessor is half-finished, you can specify a finish-to-start dependency with a lead time of 50 percent for its successor [has a negative lag value].)';
  10753.             sTemp=L_pjdefLeadTime_TEXT;
  10754.             break;
  10755.         case 'pjdefleft-to-right':
  10756.             L_pjdeflefttoright_TEXT='(left-to-right: Keyboard settings, document views, user interface objects, and the direction in which text is displayed. English and most European languages are left-to-right languages.)';
  10757.             sTemp=L_pjdeflefttoright_TEXT;
  10758.             break;
  10759.         case 'pjdefLegend':
  10760.             L_pjdefLegend_TEXT='(legend: The explanatory list of symbols printed on a chart or graph.)';
  10761.             sTemp=L_pjdefLegend_TEXT;
  10762.             break;
  10763.         case 'pjdefLessonsLearned':
  10764.             L_pjdefLessonsLearned_TEXT='(lessons learned: A review of best practices, project insights, and client information. As the project team disbands and new projects begin, reviewing the lessons learned lets you record information gathered and generated through the project.)';
  10765.             sTemp=L_pjdefLessonsLearned_TEXT;
  10766.             break;
  10767.         case 'pjdefLeveling':
  10768.             L_pjdefLeveling_TEXT='(leveling: Resolving resource conflicts or overallocations by delaying or splitting certain tasks. When Project levels a resource, its selected assignments are distributed and rescheduled.)';
  10769.             sTemp=L_pjdefLeveling_TEXT;
  10770.             break;
  10771.         case 'pjdefLevelingDelay':
  10772.             L_pjdefLevelingDelay_TEXT='(leveling delay: The amount of time that an assignment or task is to be delayed from the original scheduled start date as a result of resource leveling or of manually entering a leveling delay.)';
  10773.             sTemp=L_pjdefLevelingDelay_TEXT;
  10774.             break;
  10775.         case 'pjdefLinkedProject':
  10776.             L_pjdefLinkedProject_TEXT='(linked project: A project that contains task dependencies to and from tasks in other project files. A link to a task in another project is represented with a placeholder or ghost task.)';
  10777.             sTemp=L_pjdefLinkedProject_TEXT;
  10778.             break;
  10779.         case 'pjdefLinking':
  10780.             L_pjdefLinking_TEXT='(linking: In a project, establishing a dependency between tasks. Linking tasks defines a dependency between their start and finish dates. In OLE, establishing a connection between programs so that data in one document is updated when it changes in another.)';
  10781.             sTemp=L_pjdefLinking_TEXT;
  10782.             break;
  10783.         case 'pjdefLinkLine':
  10784.             L_pjdefLinkLine_TEXT='(link line: On the Gantt Chart and Network Diagram, the line that appears between two tasks to indicate a task dependency.)';
  10785.             sTemp=L_pjdefLinkLine_TEXT;
  10786.             break;
  10787.         case 'pjdefLinkType':
  10788.             L_pjdefLinkType_TEXT='(link type: The type of task dependency. The four dependency types are Finish-to-start [FS], Finish-to-finish [FF], Start-to-start [SS], and Start-to-finish [SF].)';
  10789.             sTemp=L_pjdefLinkType_TEXT;
  10790.             break;
  10791.         case 'pjdefListSeparatorCharacter':
  10792.             L_pjdefListSeparatorCharacter_TEXT='(list-separator character: A character, usually a comma or semicolon, that separates elements in a list.)';
  10793.             sTemp=L_pjdefListSeparatorCharacter_TEXT;
  10794.             break;
  10795.         case 'pjdefLogical':
  10796.             L_pjdefLogical_TEXT='(logical: Used to describe insertion point movement and text selection when working with bidirectional text. Movement progresses within bidirectional text according to the direction of the language encountered.)';
  10797.             sTemp=L_pjdefLogical_TEXT;
  10798.             break;
  10799.         case 'pjdefMacro':
  10800.             L_pjdefMacro_TEXT='(macro: An action or a set of actions that you can use to automate tasks. Macros are recorded in the Visual Basic for Applications programming language.)';
  10801.             sTemp=L_pjdefMacro_TEXT;
  10802.             break;
  10803.         case 'pjdefmacro_project':
  10804.             L_pjdefmacro_project_TEXT='(macro project: A collection of components, including forms, code, and class modules, that make up a macro. Macro projects created in Visual Basic for Applications can be included in add-ins and in Project.)';
  10805.             sTemp=L_pjdefmacro_project_TEXT;
  10806.             break;
  10807.         case 'pjdefMap':
  10808.             L_pjdefMap_TEXT='(map: A format that\'s used to transfer information between programs when importing or exporting data. A map helps ensure that information is placed into the proper fields in the destination file.)';
  10809.             sTemp=L_pjdefMap_TEXT;
  10810.             break;
  10811.         case 'pjdefMAPI':
  10812.             L_pjdefMAPI_TEXT='(MAPI: The acronym for Messaging Application Programming Interface, which is the standard programming interface proposed and supported by Microsoft for accessing electronic messaging.)';
  10813.             sTemp=L_pjdefMAPI_TEXT;
  10814.             break;
  10815.         case 'pjdefMasterProject':
  10816.             L_pjdefMasterProject_TEXT='(master project: A project containing other projects [known as inserted projects or subprojects]. Also called a consolidated project.)';
  10817.             sTemp=L_pjdefMasterProject_TEXT;
  10818.             break;
  10819.         case 'pjdefmaterial_label':
  10820.             L_pjdefmaterial_label_TEXT='(material label: The unit of measure for a material resource, such as tons, cubic yards, or board feet.)';
  10821.             sTemp=L_pjdefmaterial_label_TEXT;
  10822.             break;
  10823.         case 'pjdefmaterial_resources':
  10824.             L_pjdefmaterial_resources_TEXT='(material resources: Consumable materials or supplies, such as concrete, wood, or nails.)';
  10825.             sTemp=L_pjdefmaterial_resources_TEXT;
  10826.             break;
  10827.         case 'pjdefMaterialresource':
  10828.             L_pjdefMaterialresource_TEXT='(material resource: The supplies or other consumable items that are used to complete tasks in a project.)';
  10829.             sTemp=L_pjdefMaterialresource_TEXT;
  10830.             break;
  10831.         case 'pjdefMaxUnits':
  10832.             L_pjdefMaxUnits_TEXT='(maximum units: The maximum percentage or number of units that a resource is available to be scheduled for any tasks. The maximum units value indicates the highest capacity at which the resource is available for work; the default value is 100 percent.)';
  10833.             sTemp=L_pjdefMaxUnits_TEXT;
  10834.             break;
  10835.         case 'pjdefmenu':
  10836.             L_pjdefmenu_TEXT='(menu: A list of commands that is displayed when you click a menu name on a menu bar or other toolbar.)';
  10837.             sTemp=L_pjdefmenu_TEXT;
  10838.             break;
  10839.         case 'pjdefmenu_bar':
  10840.             L_pjdefmenu_bar_TEXT='(menu bar: The horizontal bar below the title bar that contains the names of menus. A menu bar can be the built-in menu bar or a custom menu bar.)';
  10841.             sTemp=L_pjdefmenu_bar_TEXT;
  10842.             break;
  10843.         case 'pjdefMessageRule':
  10844.             L_pjdefMessageRule_TEXT='(message rule: A set of criteria for updating a project file with the information in Project Server workgroup messages. For example, project managers can specify that updates from all workgroup members be automatically accepted.)';
  10845.             sTemp=L_pjdefMessageRule_TEXT;
  10846.             break;
  10847.         case 'pjdefMethod':
  10848.             L_pjdefMethod_TEXT='(method: An action that an object can perform on itself. For the list of methods that apply to a particular object in Project, search the Visual Basic Help topics for the name of the object, and then choose <b>Methods</b>.)';
  10849.             sTemp=L_pjdefMethod_TEXT;
  10850.             break;
  10851.         case 'pjdefMicrosoft_Active_Accessibility_MSAA':
  10852.             L_pjdefMicrosoft_Active_Accessibility_MSAA_TEXT='(MSAA: A technology that improves the way programs and the operating system work with accessibility aids, such as screen readers.)';
  10853.             sTemp=L_pjdefMicrosoft_Active_Accessibility_MSAA_TEXT;
  10854.             break;
  10855.         case 'pjdefMicrosoft_Project_Server':
  10856.             L_pjdefMicrosoft_Project_Server_TEXT='(Project Server: A Project companion product that enables collaborative planning and status reporting among workgroup members, project managers, and other stakeholders by working with and exchanging project information on a Web site.)';
  10857.             sTemp=L_pjdefMicrosoft_Project_Server_TEXT;
  10858.             break;
  10859.         case 'pjdefMicrosoft_Project_Web_Access':
  10860.             L_pjdefMicrosoft_Project_Web_Access_TEXT='(Project Web Access: The Web-based user interface that is used to access information in Project Server.)';
  10861.             sTemp=L_pjdefMicrosoft_Project_Web_Access_TEXT;
  10862.             break;
  10863.         case 'pjdefMilestone':
  10864.             L_pjdefMilestone_TEXT='(milestone: A reference point marking a major event in a project and used to monitor the project\'s progress. Any task with zero duration is automatically displayed as a milestone; you can also mark any other task of any duration as a milestone.)';
  10865.             sTemp=L_pjdefMilestone_TEXT;
  10866.             break;
  10867.         case 'pjdefModule':
  10868.             L_pjdefModule_TEXT='(module: The location in which macros are stored. Macros stored in modules in the Global.mpt file are available from any project and can be used to organize related modules.)';
  10869.             sTemp=L_pjdefModule_TEXT;
  10870.             break;
  10871.         case 'pjdefMPD':
  10872.             L_pjdefMPD_TEXT='(MPD file format: The Microsoft Project Database [MPD] file format is a record-based Access-compliant file format that you can use for saving an entire project. Files saved in this format have an .mpd extension.)';
  10873.             sTemp=L_pjdefMPD_TEXT;
  10874.             break;
  10875.         case 'pjdefMPW':
  10876.             L_pjdefMPW_TEXT='(Project Workspace file format: The file format associated with workspace files and characterized by the .mpw extension.)';
  10877.             sTemp=L_pjdefMPW_TEXT;
  10878.             break;
  10879.         case 'pjdefMPX':
  10880.             L_pjdefMPX_TEXT='(MPX file format: The Microsoft Project Exchange [MPX] file format is a record-based ASCII text format that is used to import data into Project.)';
  10881.             sTemp=L_pjdefMPX_TEXT;
  10882.             break;
  10883.         case 'pjdefMSProjectDatabase':
  10884.             L_pjdefMSProjectDatabase_TEXT='(Microsoft Project database: A file format [.mpd] that is used for storing all project information in a central location that is used for cross-project analysis and reporting, as well as for security purposes. Replaces the old MPX file format.)';
  10885.             sTemp=L_pjdefMSProjectDatabase_TEXT;
  10886.             break;
  10887.         case 'pjdefMSWindowsUserAccount':
  10888.             L_pjdefMSWindowsUserAccount_TEXT='(Windows user account: All the information that defines a user to the operating system, including the user name and any required password, membership in groups, and the rights and permissions that are associated with the user.)';
  10889.             sTemp=L_pjdefMSWindowsUserAccount_TEXT;
  10890.             break;
  10891.         case 'pjdefMultipleCriticalPaths':
  10892.             L_pjdefMultipleCriticalPaths_TEXT='(multiple critical paths: A series of tasks that must be completed on schedule for a project to finish on schedule. Identify and track multiple critical paths to be more effective in managing conditions that could affect your project\'s finish date.)';
  10893.             sTemp=L_pjdefMultipleCriticalPaths_TEXT;
  10894.             break;
  10895.         case 'pjdefMultipleProjects':
  10896.             L_pjdefMultipleProjects_TEXT='(multiple projects: Several project plans that may or may not be linked or consolidated. If you are working on several projects at one time, you can compare information about critical paths, resource sharing, or priorities among all of the projects.)';
  10897.             sTemp=L_pjdefMultipleProjects_TEXT;
  10898.             break;
  10899.         case 'pjdefnetwork_place':
  10900.             L_pjdefnetwork_place_TEXT='(Network Place: A folder on a network file server, Web server, or Exchange 2000 server. You can create a shortcut to a Network Place to work with files there. Some Network Places, such as document libraries, have features not available with local folders.)';
  10901.             sTemp=L_pjdefnetwork_place_TEXT;
  10902.             break;
  10903.         case 'pjdefNetworkChart':
  10904.             L_pjdefNetworkChart_TEXT='(Network Diagram: A diagram that shows dependencies between project tasks. Tasks are represented by boxes, or nodes, and task dependencies are represented by lines that connect the boxes. In Project, the Network Diagram view is a network diagram.)';
  10905.             sTemp=L_pjdefNetworkChart_TEXT;
  10906.             break;
  10907.         case 'pjdefNetworkGateway':
  10908.             L_pjdefNetworkGateway_TEXT='(network gateway: The mechanism through which two different networks are connected. The network gateway regulates the connections and ensures that they are efficiently used.)';
  10909.             sTemp=L_pjdefNetworkGateway_TEXT;
  10910.             break;
  10911.         case 'pjdefNonadjacentSelection':
  10912.             L_pjdefNonadjacentSelection_TEXT='(nonadjacent selection: A selection of fields that are not sequential. For example, in a task sheet you can select tasks 14, 7, and 10. You select nonadjacent fields by holding down CTRL as you select the fields.)';
  10913.             sTemp=L_pjdefNonadjacentSelection_TEXT;
  10914.             break;
  10915.         case 'pjdefNoncriticalTask':
  10916.             L_pjdefNoncriticalTask_TEXT='(noncritical task: A task with slack time that can be completed after its end date without delaying the project finish date. Slack is the amount of time that a task can slip before it affects another task\'s dates or the project finish date.)';
  10917.             sTemp=L_pjdefNoncriticalTask_TEXT;
  10918.             break;
  10919.         case 'pjdefNonworkingTime':
  10920.             L_pjdefNonworkingTime_TEXT='(nonworking time: Hours or days designated in a resource or project calendar when Project should not schedule tasks because work is not done. Nonworking time can include lunch breaks, weekends, and holidays, for example.)';
  10921.             sTemp=L_pjdefNonworkingTime_TEXT;
  10922.             break;
  10923.         case 'pjdefNotes':
  10924.             L_pjdefNotes_TEXT='(note: Explanatory text that you can attach to a task, resource, or assignment.)';
  10925.             sTemp=L_pjdefNotes_TEXT;
  10926.             break;
  10927.         case 'pjdefNull':
  10928.             L_pjdefNull_TEXT='(Null: In Visual Basic for Applications, a value indicating that a variable contains no valid data. Null is the result of either an explicit assignment of Null to a variable, or any operation between expressions that contain Null.)';
  10929.             sTemp=L_pjdefNull_TEXT;
  10930.             break;
  10931.         case 'pjdefNullField':
  10932.             L_pjdefNullField_TEXT='(Null field: A field that displays no actual information but that sets up the field for information elsewhere in the view, particularly in the Task Usage or Resource Usage view.)';
  10933.             sTemp=L_pjdefNullField_TEXT;
  10934.             break;
  10935.         case 'pjdefNumberField':
  10936.             L_pjdefNumberField_TEXT='(number field: A type of field whose content is a number. The maximum value allowed in this field is 999,999,999,999.99.)';
  10937.             sTemp=L_pjdefNumberField_TEXT;
  10938.             break;
  10939.         case 'pjdefObject':
  10940.             L_pjdefObject_TEXT='(object: In OLE, shared information, such as a chart, among different documents and different programs. The program used to create the object and the object type determines the programs that can be used to edit the object, as well as how it can be edited.)';
  10941.             sTemp=L_pjdefObject_TEXT;
  10942.             break;
  10943.         case 'pjdefObjective':
  10944.             L_pjdefObjective_TEXT='(objective: The quantifiable criteria that must be met for the project to be considered successful. Objectives must include, at least, cost, schedule, and quality measures. Unquantified objectives increase the risk that the project won\'t meet them.)';
  10945.             sTemp=L_pjdefObjective_TEXT;
  10946.             break;
  10947.         case 'pjdefObjectsBox':
  10948.             L_pjdefObjectsBox_TEXT='(objects box: An area that you can display on forms that holds linked or embedded objects.)';
  10949.             sTemp=L_pjdefObjectsBox_TEXT;
  10950.             break;
  10951.         case 'pjdefODBC':
  10952.             L_pjdefODBC_TEXT='(ODBC: A vendor-neutral interface, based on the SQL Access Group specifications announced by Microsoft. A developer can use ODBC to gain access to data in a heterogeneous environment of relational and nonrelational databases.)';
  10953.             sTemp=L_pjdefODBC_TEXT;
  10954.             break;
  10955.         case 'pjdefOfficeShortcutBar':
  10956.             L_pjdefOfficeShortcutBar_TEXT='(Office Shortcut Bar: If you use Office, you can use the Office Shortcut Bar for single-click access to the resources that you need most often. For more information about the Office Shortcut Bar, see Office Help.)';
  10957.             sTemp=L_pjdefOfficeShortcutBar_TEXT;
  10958.             break;
  10959.         case 'pjdefOLE':
  10960.             L_pjdefOLE_TEXT='(OLE: A program-integration technology that you can use to share information between programs. Project and all of the Office programs support OLE, so you can share information through linked and embedded objects.)';
  10961.             sTemp=L_pjdefOLE_TEXT;
  10962.             break;
  10963.         case 'pjdefOLEServer':
  10964.             L_pjdefOLEServer_TEXT='(OLE server: The program or document originating an OLE object that is used in another [container] program or document.)';
  10965.             sTemp=L_pjdefOLEServer_TEXT;
  10966.             break;
  10967.         case 'pjdefOperator':
  10968.             L_pjdefOperator_TEXT='(operator: A word that specifies a logical relationship between two or more criteria in a filter [AND, OR]. In a formula, an operator is a sign or symbol that specifies the type of calculation to perform within an expression.)';
  10969.             sTemp=L_pjdefOperator_TEXT;
  10970.             break;
  10971.         case 'pjdefOptimisticDuration':
  10972.             L_pjdefOptimisticDuration_TEXT='(optimistic duration: The best-case possibility for the total span of active working time expected for a task, that is, the amount of time from the optimistic start to optimistic finish of a task.)';
  10973.             sTemp=L_pjdefOptimisticDuration_TEXT;
  10974.             break;
  10975.         case 'pjdefOrganizer':
  10976.             L_pjdefOrganizer_TEXT='(Organizer: The tabbed dialog box in which you can copy custom views, tables, filters, grouping definitions, calendars, reports, forms, toolbars, maps, field attributes, and VBA modules to other documents and to other users.)';
  10977.             sTemp=L_pjdefOrganizer_TEXT;
  10978.             break;
  10979.         case 'pjdefOutline':
  10980.             L_pjdefOutline_TEXT='(outline: A hierarchical structure for a project that shows how some tasks fit within broader groupings. In Project, subtasks are indented under summary tasks.)';
  10981.             sTemp=L_pjdefOutline_TEXT;
  10982.             break;
  10983.         case 'pjdefOutlineCode':
  10984.             L_pjdefOutlineCode_TEXT='(outline codes: Custom tags you define for tasks or resources that allow you to show a hierarchy of the tasks in your project that is different from WBS codes or outline numbers. You can create up to 10 sets of custom outline codes in your project.)';
  10985.             sTemp=L_pjdefOutlineCode_TEXT;
  10986.             break;
  10987.         case 'pjdefOutlineLevel':
  10988.             L_pjdefOutlineLevel_TEXT='(outline level: The number of levels that a task is indented from the top level of the outline. You can indent tasks up to 65,000 levels in Project.)';
  10989.             sTemp=L_pjdefOutlineLevel_TEXT;
  10990.             break;
  10991.         case 'pjdefOutlineNumber':
  10992.             L_pjdefOutlineNumber_TEXT='(outline number: Numbers that indicate the exact position of a task in the outline. For example, a task with an outline number of 7.2 indicates that it\'s the second subtask under the seventh top-level summary task.)';
  10993.             sTemp=L_pjdefOutlineNumber_TEXT;
  10994.             break;
  10995.         case 'pjdefOutlookBar':
  10996.             L_pjdefOutlookBar_TEXT='(Outlook bar: The column on the left side of the program window that includes groups such as <b>Other</b> or <b>Other Shortcuts</b>, and the shortcuts available within each group. Click a shortcut to gain quick access to folders.)';
  10997.             sTemp=L_pjdefOutlookBar_TEXT;
  10998.             break;
  10999.         case 'pjdefOverallocation':
  11000.             L_pjdefOverallocation_TEXT='(overallocation: The result of assigning more tasks to a resource than the resource can accomplish in the working time available.)';
  11001.             sTemp=L_pjdefOverallocation_TEXT;
  11002.             break;
  11003.         case 'pjdefOvertime':
  11004.             L_pjdefOvertime_TEXT='(overtime: The amount of work on an assignment that is scheduled beyond the regular working hours of an assigned resource and charged at the overtime rate. Overtime work indicates the amount of the assignment\'s work that is specified as overtime work.)';
  11005.             sTemp=L_pjdefOvertime_TEXT;
  11006.             break;
  11007.         case 'pjdefPan':
  11008.             L_pjdefPan_TEXT='(pan: To scroll continuously through a project by using the IntelliMouse pointing device.)';
  11009.             sTemp=L_pjdefPan_TEXT;
  11010.             break;
  11011.         case 'pjdefPane':
  11012.             L_pjdefPane_TEXT='(pane: A section of a window that contains a view. A combination view consists of two panes, for example, the Gantt Chart view in the top pane and the Task Form view in the bottom pane.)';
  11013.             sTemp=L_pjdefPane_TEXT;
  11014.             break;
  11015.         case 'pjdefParametricModelingMethod':
  11016.             L_pjdefParametricModelingMethod_TEXT='(parametric modeling method: An estimating method that uses project characteristics [parameters] in a mathematical model to predict project costs.)';
  11017.             sTemp=L_pjdefParametricModelingMethod_TEXT;
  11018.             break;
  11019.         case 'pjdefParent':
  11020.             L_pjdefParent_TEXT='(parent: The object or collection that most closely contains another object or collection. For example, in Project, the <b>Application</b> object is the parent of the <b>ActiveSelection</b> object.)';
  11021.             sTemp=L_pjdefParent_TEXT;
  11022.             break;
  11023.         case 'pjdefPassword':
  11024.             L_pjdefPassword_TEXT='(password: A combination of characters that is used to authorize access to a project. In Project, passwords can have from 1 to 17 characters. Use strong passwords that combine upper- and lowercase letters, numbers, and symbols.)';
  11025.             sTemp=L_pjdefPassword_TEXT;
  11026.             break;
  11027.         case 'pjdefPathName':
  11028.             L_pjdefPathName_TEXT='(path: A sequence of all folder names from the root to a file\'s current folder, separated by backslash characters [\\] in Windows.)';
  11029.             sTemp=L_pjdefPathName_TEXT;
  11030.             break;
  11031.         case 'pjdefPathStatement':
  11032.             L_pjdefPathStatement_TEXT='(path statement: The location of a file, expressed by drive letter and directory. For example, C:\\Windows\\Favorites is the path statement to where Microsoft Project stores favorite Web sites that you have saved.)';
  11033.             sTemp=L_pjdefPathStatement_TEXT;
  11034.             break;
  11035.         case 'pjdefPeakUnits':
  11036.             L_pjdefPeakUnits_TEXT='(peak units: The highest level at which a resource is scheduled for all assigned tasks during a given period of time. Peak units are expressed as a percentage, number of units, or consumption rate.)';
  11037.             sTemp=L_pjdefPeakUnits_TEXT;
  11038.             break;
  11039.         case 'pjdefPercentComplete':
  11040.             L_pjdefPercentComplete_TEXT='(percent complete: A field that you use to enter or display how much of a task has been completed. This value is expressed as the percentage of the task duration that has been completed.)';
  11041.             sTemp=L_pjdefPercentComplete_TEXT;
  11042.             break;
  11043.         case 'pjdefPercentField':
  11044.             L_pjdefPercentField_TEXT='(percentage field: A type of field whose content is a percentage. Examples include the %Complete and %WorkComplete fields.)';
  11045.             sTemp=L_pjdefPercentField_TEXT;
  11046.             break;
  11047.         case 'pjdefPercentNumberField':
  11048.             L_pjdefPercentNumberField_TEXT='(percentage/number field: A type of field whose content is a value that can be expressed as either a percentage or a decimal number. For example, in the Assignment Units field, one full-time assigned resource can be expressed as 100% or as 1.00.)';
  11049.             sTemp=L_pjdefPercentNumberField_TEXT;
  11050.             break;
  11051.         case 'pjdefPercentWorkComplete':
  11052.             L_pjdefPercentWorkComplete_TEXT='(percent work complete: A percentage value that indicates the current status of a task, resource, or assignment, expressed as the percentage of work that has been completed.)';
  11053.             sTemp=L_pjdefPercentWorkComplete_TEXT;
  11054.             break;
  11055.         case 'pjdefPERTAnalysis':
  11056.             L_pjdefPERTAnalysis_TEXT='(PERT analysis: PERT [Program, Evaluation, and Review Technique] analysis is a process by which you evaluate a probable outcome based on three scenarios: best-case, expected-case, and worst-case.)';
  11057.             sTemp=L_pjdefPERTAnalysis_TEXT;
  11058.             break;
  11059.         case 'pjdefPerUseCost':
  11060.             L_pjdefPerUseCost_TEXT='(per-use cost: A set fee for the use of a resource that can be in place of, or in addition to, a variable. For work resources, a per-use cost accrues each time that the resource is used. For material resources, a per-use cost is accrued only once.)';
  11061.             sTemp=L_pjdefPerUseCost_TEXT;
  11062.             break;
  11063.         case 'pjdefPessimisticDuration':
  11064.             L_pjdefPessimisticDuration_TEXT='(pessimistic duration: The worst-case possibility for the total span of active working time expected for a task, that is, the amount of time from the pessimistic start to pessimistic finish of a task.)';
  11065.             sTemp=L_pjdefPessimisticDuration_TEXT;
  11066.             break;
  11067.         case 'pjdefPhase':
  11068.             L_pjdefPhase_TEXT='(phase: A group of related tasks that completes a major step in a project.)';
  11069.             sTemp=L_pjdefPhase_TEXT;
  11070.             break;
  11071.         case 'pjdefphysical_percent_complete':
  11072.             L_pjdefphysical_percent_complete_TEXT='(physical percent complete: An alternative value to Percent [%] Complete or Percent [%] Work Complete that you enter per task. This may be useful when analyzing project performance through such means as variance analysis or earned value analysis.)';
  11073.             sTemp=L_pjdefphysical_percent_complete_TEXT;
  11074.             break;
  11075.         case 'pjdefPivotChart':
  11076.             L_pjdefPivotChart_TEXT='(PivotChart: Provides a graphical representation of the data in a PivotTable report, an interactive, crosstabulated report that summarizes and analyzes data. Use the Portfolio Analyzer to select the data that you display in a PivotChart.)';
  11077.             sTemp=L_pjdefPivotChart_TEXT;
  11078.             break;
  11079.         case 'pjdefPivotTable':
  11080.             L_pjdefPivotTable_TEXT='(PivotTable: An interactive table that summarizes, or crosstabulates, large amounts of data. You can rotate its rows and columns to see different summaries of the source data, filter the data by displaying different pages, or display details.)';
  11081.             sTemp=L_pjdefPivotTable_TEXT;
  11082.             break;
  11083.         case 'pjdefPixel':
  11084.             L_pjdefPixel_TEXT='(pixel: One of many points of light [or picture elements] that makes up a computer image. One pixel is represented by a single square in a bitmap grid.)';
  11085.             sTemp=L_pjdefPixel_TEXT;
  11086.             break;
  11087.         case 'pjdefPlaceholderRes':
  11088.             L_pjdefPlaceholderRes_TEXT='(placeholder resource: A temporary resource name that is added to a project plan to help estimate the types and numbers of resources needed. With placeholder resource names, you can develop your project proposal and obtain approvals.)';
  11089.             sTemp=L_pjdefPlaceholderRes_TEXT;
  11090.             break;
  11091.         case 'pjdefPlacesBar':
  11092.             L_pjdefPlacesBar_TEXT='(Places bar: The bar on the left side of certain dialog boxes [such as <b>Open</b> or <b>Save As</b>] that contains shortcuts to the History, My Documents, Desktop, Favorites, and Web folders. Click a shortcut to show the contents of the folder.)';
  11093.             sTemp=L_pjdefPlacesBar_TEXT;
  11094.             break;
  11095.         case 'pjdefPlan':
  11096.             L_pjdefPlan_TEXT='(plan: A schedule of task start and finish dates and resource and cost data. A baseline plan is the original plan that you save and use to monitor progress. An interim plan is a set of dates you save during the project to compare to other interim plans.)';
  11097.             sTemp=L_pjdefPlan_TEXT;
  11098.             break;
  11099.         case 'pjdefPlannedCosts':
  11100.             L_pjdefPlannedCosts_TEXT='(planned costs: The latest cost of tasks, resources, assignments, and the entire project, which Project displays in the Cost field as cost or total cost.)';
  11101.             sTemp=L_pjdefPlannedCosts_TEXT;
  11102.             break;
  11103.         case 'pjdefPoints':
  11104.             L_pjdefPoints_TEXT='(point: A unit of measure originating in the typesetting industry. A point is 1/72 of an inch or about 1/28 of a centimeter. The height of fonts is usually expressed in points.)';
  11105.             sTemp=L_pjdefPoints_TEXT;
  11106.             break;
  11107.         case 'pjdefPredecessor':
  11108.             L_pjdefPredecessor_TEXT='(predecessor: A task that must start or finish before another task can start or finish.)';
  11109.             sTemp=L_pjdefPredecessor_TEXT;
  11110.             break;
  11111.         case 'pjdefPriority':
  11112.             L_pjdefPriority_TEXT='(priority: An indication of a task\'s importance and availability for leveling [that is, resolving resource conflicts or overallocations by delaying or splitting certain tasks]. Tasks with the lowest priority are delayed or split first.)';
  11113.             sTemp=L_pjdefPriority_TEXT;
  11114.             break;
  11115.         case 'pjdefprivileges':
  11116.             L_pjdefprivileges_TEXT='(privileges: These specify the items in a project that a user can either see or modify. For example, only someone with administrative privileges can modify outline codes to be used by all project managers within an organization.)';
  11117.             sTemp=L_pjdefprivileges_TEXT;
  11118.             break;
  11119.         case 'pjdefProcure':
  11120.             L_pjdefProcure_TEXT='(procure: To obtain the work and material resources required to complete a project.)';
  11121.             sTemp=L_pjdefProcure_TEXT;
  11122.             break;
  11123.         case 'pjdefprofile':
  11124.             L_pjdefprofile_TEXT='(profile: A collection of settings used to specify which Project Server your current project should connect to. You specify a profile in the <b>Microsoft Project Server Accounts</b> dialog box when you start Project.)';
  11125.             sTemp=L_pjdefprofile_TEXT;
  11126.             break;
  11127.         case 'pjdefProgressBar':
  11128.             L_pjdefProgressBar_TEXT='(progress bar: On the Gantt Chart, a bar that shows how much of a task has been completed. The progress bar is overlaid on all tasks that are in progress or that have been completed.)';
  11129.             sTemp=L_pjdefProgressBar_TEXT;
  11130.             break;
  11131.         case 'pjdefProgressLine':
  11132.             L_pjdefProgressLine_TEXT='(progress lines: Visually represent the progress of your project, displayed in the Gantt Chart view. Progress lines connect in-progress tasks, creating a graph on the Gantt Chart indicating work that is behind and peaks indicating work that is ahead.)';
  11133.             sTemp=L_pjdefProgressLine_TEXT;
  11134.             break;
  11135.         case 'pjdefProjectassumptions':
  11136.             L_pjdefProjectassumptions_TEXT='(project assumptions: Factors that, for planning purposes, are considered to be true, real, or certain. Assumptions generally involve a degree of risk.)';
  11137.             sTemp=L_pjdefProjectassumptions_TEXT;
  11138.             break;
  11139.         case 'pjdefProjectCalendar':
  11140.             L_pjdefProjectCalendar_TEXT='(project calendar: The base calendar used by a project.)';
  11141.             sTemp=L_pjdefProjectCalendar_TEXT;
  11142.             break;
  11143.         case 'pjdefProjectConstraint':
  11144.             L_pjdefProjectConstraint_TEXT='(project constraint: A factor that will limit the project management team\'s options. For example, a predefined budget is a constraint that may limit the team\'s scope, staffing, and schedule options.)';
  11145.             sTemp=L_pjdefProjectConstraint_TEXT;
  11146.             break;
  11147.         case 'pjdefProjectSummaryReport':
  11148.             L_pjdefProjectSummaryReport_TEXT='(project summary report: A one-page summary of significant project information, including the number of tasks and resources, task and schedule status, costs, start and finish dates, and so on.)';
  11149.             sTemp=L_pjdefProjectSummaryReport_TEXT;
  11150.             break;
  11151.         case 'pjdefProjectSummaryTask':
  11152.             L_pjdefProjectSummaryTask_TEXT='(project summary task: A task that summarizes the duration, work, and costs of all tasks in a project. The project summary task appears at the top of the project, its ID number is 0, and it presents the project\'s timeline from start to finish.)';
  11153.             sTemp=L_pjdefProjectSummaryTask_TEXT;
  11154.             break;
  11155.         case 'pjdefProjectTriangle':
  11156.             L_pjdefProjectTriangle_TEXT='(project triangle: The interrelationship of time, money, and scope. If you adjust any one of these elements, the other two are affected. For example, if you adjust the project plan to shorten the schedule, you might increase costs and decrease scope.)';
  11157.             sTemp=L_pjdefProjectTriangle_TEXT;
  11158.             break;
  11159.         case 'pjdefPromoting':
  11160.             L_pjdefPromoting_TEXT='(outdenting: Moving a task to a higher outline level [to the left] in the Task Name field.)';
  11161.             sTemp=L_pjdefPromoting_TEXT;
  11162.             break;
  11163.         case 'pjdefproperty':
  11164.             L_pjdefproperty_TEXT='(property: A named attribute of a control, a field, or an object that you set to define one of the object\'s characteristics [such as size, color, or screen location] or an aspect of its behavior [such as whether the object is hidden].)';
  11165.             sTemp=L_pjdefproperty_TEXT;
  11166.             break;
  11167.         case 'pjdefPublish_Assignments':
  11168.             L_pjdefPublish_Assignments_TEXT='(publish assignments: If you use Project Server as your team collaboration solution, you publish assignments to notify your resources of new and changed assignments to tasks.)';
  11169.             sTemp=L_pjdefPublish_Assignments_TEXT;
  11170.             break;
  11171.         case 'pjdefQuality':
  11172.             L_pjdefQuality_TEXT='(quality: The degree of excellence, or the desired standards, in a product, process, or project.)';
  11173.             sTemp=L_pjdefQuality_TEXT;
  11174.             break;
  11175.         case 'pjdefrate-based_cost':
  11176.             L_pjdefratebased_cost_TEXT='(rate-based cost: Costs that are based on a rate that you enter in the <b>Costs</b> tab of the <b>Resource Information</b> dialog box.)';
  11177.             sTemp=L_pjdefratebased_cost_TEXT;
  11178.             break;
  11179.         case 'pjdefReadOnly':
  11180.             L_pjdefReadOnly_TEXT='(read-only: An option you can set so that a file can be read but not changed. You can open and view a read-only project file, but you cannot save changes to it.)';
  11181.             sTemp=L_pjdefReadOnly_TEXT;
  11182.             break;
  11183.         case 'pjdefReadWrite':
  11184.             L_pjdefReadWrite_TEXT='(read/write: The typical option set for opening files so that a file can be read and edited, and changes can be saved.)';
  11185.             sTemp=L_pjdefReadWrite_TEXT;
  11186.             break;
  11187.         case 'pjdefRecurringTask':
  11188.             L_pjdefRecurringTask_TEXT='(recurring task: A task that occurs repeatedly during the course of a project. For example, you might define the weekly status meeting as a recurring task.)';
  11189.             sTemp=L_pjdefRecurringTask_TEXT;
  11190.             break;
  11191.         case 'pjdefRelativeReference':
  11192.             L_pjdefRelativeReference_TEXT='(relative reference: A reference to a column or row that is based on the active cell. The results of a relative reference change every time the location of the active cell changes.)';
  11193.             sTemp=L_pjdefRelativeReference_TEXT;
  11194.             break;
  11195.         case 'pjdefRemainingCost':
  11196.             L_pjdefRemainingCost_TEXT='(remaining cost: The estimated cost that is yet to be incurred for a task, resource, or assignment.)';
  11197.             sTemp=L_pjdefRemainingCost_TEXT;
  11198.             break;
  11199.         case 'pjdefRemainingDuration':
  11200.             L_pjdefRemainingDuration_TEXT='(remaining duration: The amount of time left to work on a task before the task is completed. This is calculated as follows: Remaining Duration = Duration - Actual Duration.)';
  11201.             sTemp=L_pjdefRemainingDuration_TEXT;
  11202.             break;
  11203.         case 'pjdefRemainingWork':
  11204.             L_pjdefRemainingWork_TEXT='(remaining work: The amount of work, in terms of a time unit such as hours or days, that is left to be completed on a task. This is calculated as follows: Remaining Work = Work - Actual Work.)';
  11205.             sTemp=L_pjdefRemainingWork_TEXT;
  11206.             break;
  11207.         case 'pjdefReport':
  11208.             L_pjdefReport_TEXT='(report: A format in which you can print schedule information that is appropriate for the intended recipients. You can use the predefined reports provided by Project or create custom reports.)';
  11209.             sTemp=L_pjdefReport_TEXT;
  11210.             break;
  11211.         case 'pjdefReportPeriod':
  11212.             L_pjdefReportPeriod_TEXT='(report period: The span of time during which you track and update a task that the workgroup manager has assigned to you. You can change the unit of time to days, weeks, or a single unit of time for the whole task.)';
  11213.             sTemp=L_pjdefReportPeriod_TEXT;
  11214.             break;
  11215.         case 'pjdefReportType':
  11216.             L_pjdefReportType_TEXT='(report type: A category of Project reports that all contain similar information. There are five report types: Overview, Current Activities, Costs, Assignments, and Workload.)';
  11217.             sTemp=L_pjdefReportType_TEXT;
  11218.             break;
  11219.         case 'pjdefresource_breakdown_structure':
  11220.             L_pjdefresource_breakdown_structure_TEXT='(RBS: The structure that describes an organization\'s hierarchy. The RBS code defines the hierarchical position that a resource holds in the organization.)';
  11221.             sTemp=L_pjdefresource_breakdown_structure_TEXT;
  11222.             break;
  11223.         case 'pjdefResourceAllocation':
  11224.             L_pjdefResourceAllocation_TEXT='(resource allocation: The assignment of resources to tasks in a project.)';
  11225.             sTemp=L_pjdefResourceAllocation_TEXT;
  11226.             break;
  11227.         case 'pjdefResourceCalendar':
  11228.             L_pjdefResourceCalendar_TEXT='(resource calendar: A calendar that specifies working and nonworking time for an individual resource. A resource calendar differs from a base calendar, which specifies working and nonworking time for more than one resource.)';
  11229.             sTemp=L_pjdefResourceCalendar_TEXT;
  11230.             break;
  11231.         case 'pjdefResourceDrivenScheduling':
  11232.             L_pjdefResourceDrivenScheduling_TEXT='(resource-driven scheduling: A scheduling method that bases a task\'s duration on the amount of work that the task requires and the number of resource units assigned to it.)';
  11233.             sTemp=L_pjdefResourceDrivenScheduling_TEXT;
  11234.             break;
  11235.         case 'pjdefResourceGroup':
  11236.             L_pjdefResourceGroup_TEXT='(resource group: Resources that share characteristics and are categorized by a group name. For example, you can categorize resources by job function and use a group name such as plumbers. Or, you can categorize resources by employment status.)';
  11237.             sTemp=L_pjdefResourceGroup_TEXT;
  11238.             break;
  11239.         case 'pjdefResourceInfo':
  11240.             L_pjdefResourceInfo_TEXT='(resource information: The categories of information shown in the Resource Sheet view that specify details about a resource, such as name, type, group, maximum units, and standard rate. Apply a different table to the view for other resource information.)';
  11241.             sTemp=L_pjdefResourceInfo_TEXT;
  11242.             break;
  11243.         case 'pjdefResourceList':
  11244.             L_pjdefResourceList_TEXT='(resource list: The resources that are available for assignments to tasks. The resource list may be stored in a single project file or shared with a resource pool.)';
  11245.             sTemp=L_pjdefResourceList_TEXT;
  11246.             break;
  11247.         case 'pjdefResourcePool':
  11248.             L_pjdefResourcePool_TEXT='(resource pool: A set of resources that is available for assignment to project tasks. A resource pool can be used exclusively by one project or can be shared by several projects.)';
  11249.             sTemp=L_pjdefResourcePool_TEXT;
  11250.             break;
  11251.         case 'pjdefResourceReport':
  11252.             L_pjdefResourceReport_TEXT='(resource reports: Printed information about a project\'s resources, which usually includes information about costs and the allocation of resources.)';
  11253.             sTemp=L_pjdefResourceReport_TEXT;
  11254.             break;
  11255.         case 'pjdefResources':
  11256.             L_pjdefResources_TEXT='(resources: The people, equipment, and material that are used to complete tasks in a project.)';
  11257.             sTemp=L_pjdefResources_TEXT;
  11258.             break;
  11259.         case 'pjdefResourceSharing':
  11260.             L_pjdefResourceSharing_TEXT='(resource sharing: Use of the same resources in more than one file. When one project borrows resources from another project, the file that is borrowing the resources is the sharing file, and the file contributing its resources is the resource pool.)';
  11261.             sTemp=L_pjdefResourceSharing_TEXT;
  11262.             break;
  11263.         case 'pjdefResourceType':
  11264.             L_pjdefResourceType_TEXT='(resource type: There are two resource types: work resources, such as people and equipment, which perform work to accomplish a task, and material resources, such as supplies, which are never associated with work but are consumed as a task is completed.)';
  11265.             sTemp=L_pjdefResourceType_TEXT;
  11266.             break;
  11267.         case 'pjdefResourceUsage':
  11268.             L_pjdefResourceUsage_TEXT='(resource usage: An account of how many hours a resource is scheduled to work within a given time period, and thus an indicator of a resources allocation within that time period.)';
  11269.             sTemp=L_pjdefResourceUsage_TEXT;
  11270.             break;
  11271.         case 'pjdefResourceView':
  11272.             L_pjdefResourceView_TEXT='(resource view: A view that displays resource information. Resource views include the Resource Sheet, the Resource Graph, the Resource Usage, and the resource forms views.)';
  11273.             sTemp=L_pjdefResourceView_TEXT;
  11274.             break;
  11275.         case 'pjdefright-to-left':
  11276.             L_pjdefrighttoleft_TEXT='(right-to-left: Keyboard settings, document views, user interface objects, and the direction in which text is displayed. Hebrew is a right-to-left language.)';
  11277.             sTemp=L_pjdefrighttoleft_TEXT;
  11278.             break;
  11279.         case 'pjdefRisk':
  11280.             L_pjdefRisk_TEXT='(risk: An event or situation that may negatively affect project scope, schedule, budget, or quality.)';
  11281.             sTemp=L_pjdefRisk_TEXT;
  11282.             break;
  11283.         case 'pjdefRiskManagementPlan':
  11284.             L_pjdefRiskManagementPlan_TEXT='(risk management plan: A document defining how risk will be managed throughout the project. It can include identified risks, probabilities, contingency plans and methods for implementing them, and a strategy for allocating resources if a risk event occurs.)';
  11285.             sTemp=L_pjdefRiskManagementPlan_TEXT;
  11286.             break;
  11287.         case 'pjdefRiskProbability':
  11288.             L_pjdefRiskProbability_TEXT='(risk probability: An estimate of the likelihood that a particular risk event will occur.)';
  11289.             sTemp=L_pjdefRiskProbability_TEXT;
  11290.             break;
  11291.         case 'pjdefRollup':
  11292.             L_pjdefRollup_TEXT='(roll up: On the Gantt Chart, to display symbols on a summary task bar that represent subtask dates. You can roll up dates from subtasks to make important dates easily visible on a summary task bar.)';
  11293.             sTemp=L_pjdefRollup_TEXT;
  11294.             break;
  11295.         case 'pjdefRow':
  11296.             L_pjdefRow_TEXT='(row: A horizontal series of side-by-side fields displaying a common category of information. A row in Project typically consists of information about a task, resource, assignment, or some such detail as work and cost.)';
  11297.             sTemp=L_pjdefRow_TEXT;
  11298.             break;
  11299.         case 'pjdefRtfField':
  11300.             L_pjdefRtfField_TEXT='(RTF field: A type of field whose content can consist of Rich Text Format [formatted] text. For example, a note can be formatted with bulleted lists and bold type.)';
  11301.             sTemp=L_pjdefRtfField_TEXT;
  11302.             break;
  11303.         case 'pjdefScale':
  11304.             L_pjdefScale_TEXT='(scale: A method for increasing or decreasing the image on a printed page. Decreasing the scale prints more of a view or report on each page; increasing the scale prints less of a view or report on each page.)';
  11305.             sTemp=L_pjdefScale_TEXT;
  11306.             break;
  11307.         case 'pjdefSchedorcurcost':
  11308.             L_pjdefSchedorcurcost_TEXT='(scheduled or current cost: The latest cost of tasks, resources, assignments, and the entire project, which is displayed in the cost field as cost or total cost. It is kept up to date with cost adjustments that you make and with the project\'s progress.)';
  11309.             sTemp=L_pjdefSchedorcurcost_TEXT;
  11310.             break;
  11311.         case 'pjdefSchedule':
  11312.             L_pjdefSchedule_TEXT='(schedule: The timing and sequence of tasks within a project. A schedule consists mainly of tasks, task dependencies, durations, constraints, and time-oriented project information.)';
  11313.             sTemp=L_pjdefSchedule_TEXT;
  11314.             break;
  11315.         case 'pjdefScheduled':
  11316.             L_pjdefScheduled_TEXT='(scheduled: The most current information about a project, including actual and remaining dates, durations, and costs for tasks that have started and the latest projected dates, durations, and costs for tasks that have not yet started.)';
  11317.             sTemp=L_pjdefScheduled_TEXT;
  11318.             break;
  11319.         case 'pjdefScope':
  11320.             L_pjdefScope_TEXT='(scope: The combination of all project goals and tasks, and the work required to accomplish them.)';
  11321.             sTemp=L_pjdefScope_TEXT;
  11322.             break;
  11323.         case 'pjdefScreenTips':
  11324.             L_pjdefScreenTips_TEXT='(ScreenTips: Notes that appear on the screen to provide information about toolbar buttons and other screen elements.)';
  11325.             sTemp=L_pjdefScreenTips_TEXT;
  11326.             break;
  11327.         case 'pjdefSCurveGraph':
  11328.             L_pjdefSCurveGraph_TEXT='(S-curve graph: A graph that can be plotted with Excel by using cumulative timephased data such as BCWP and cumulative cost from Project to show earned value information. It is plotted when you use the Analyze Timescaled Data Wizard.)';
  11329.             sTemp=L_pjdefSCurveGraph_TEXT;
  11330.             break;
  11331.         case 'pjdefsearch_page':
  11332.             L_pjdefsearch_page_TEXT='(search page: A page that you use to find and go to other Internet sites or to files on an intranet. Many search pages provide various ways to search, for example, by topic, by keyword, or by matches to user queries.)';
  11333.             sTemp=L_pjdefsearch_page_TEXT;
  11334.             break;
  11335.         case 'pjdefserver_administrator':
  11336.             L_pjdefserver_administrator_TEXT='(server administrator: An individual responsible for setting up fields, views, and reports for an organization and setting up and maintaining the server and server software.)';
  11337.             sTemp=L_pjdefserver_administrator_TEXT;
  11338.             break;
  11339.         case 'pjdefSharedRes':
  11340.             L_pjdefSharedRes_TEXT='(shared resource: A resource that is used by more than one project. One resource can be a part of individual resource lists for several different projects, or the resource can be a part of a single shared resource pool.)';
  11341.             sTemp=L_pjdefSharedRes_TEXT;
  11342.             break;
  11343.         case 'pjdefShareName':
  11344.             L_pjdefShareName_TEXT='(share name: A partition of disk space that is set aside on a server for a specific purpose. Often, the server space will be divided into a share name to service the needs of a specific group in an organization, and appropriate people will be given access.)';
  11345.             sTemp=L_pjdefShareName_TEXT;
  11346.             break;
  11347.         case 'pjdefSharingFiles':
  11348.             L_pjdefSharingFiles_TEXT='(sharer file: A file using resources from another file, which can be another project file or a file containing only resource information, called a resource pool.)';
  11349.             sTemp=L_pjdefSharingFiles_TEXT;
  11350.             break;
  11351.         case 'pjdefSheet':
  11352.             L_pjdefSheet_TEXT='(sheet: A spreadsheet-like representation [in rows and columns] of task or resource information. Each row specifies an individual task or resource. Each column [field] specifies a type of information, such as start dates or standard rates.)';
  11353.             sTemp=L_pjdefSheet_TEXT;
  11354.             break;
  11355.         case 'pjdefshortcut_key':
  11356.             L_pjdefshortcut_key_TEXT='(shortcut key: A function key or key combination, such as F5 or CTRL+A, that you use to carry out a menu command. In contrast, an access key is a key combination, such as ALT+F, that moves the focus to a menu, command, or control.)';
  11357.             sTemp=L_pjdefshortcut_key_TEXT;
  11358.             break;
  11359.         case 'pjdefShortcutMenu':
  11360.             L_pjdefShortcutMenu_TEXT='(shortcut menu: A menu that is accessed by pointing to a part of Project and clicking the right mouse button. Project has several shortcut menus. Use shortcut menus to save time and make it easier to work with project files.)';
  11361.             sTemp=L_pjdefShortcutMenu_TEXT;
  11362.             break;
  11363.         case 'pjdefside_pane':
  11364.             L_pjdefside_pane_TEXT='(side pane: A pane displayed on the left side of the Project and Project Web Access interfaces. In Project, the side pane contains Project Guide information; in Project Web Access, the side pane contains links.)';
  11365.             sTemp=L_pjdefside_pane_TEXT;
  11366.             break;
  11367.         case 'pjdefSinglePaneView':
  11368.             L_pjdefSinglePaneView_TEXT='(single-pane view: A window in which only one view appears, such as the Task Sheet, Network Diagram view, Resource Graph view, or Calendar view.)';
  11369.             sTemp=L_pjdefSinglePaneView_TEXT;
  11370.             break;
  11371.         case 'pjdefSizingHandle':
  11372.             L_pjdefSizingHandle_TEXT='(sizing handle: A square handle that appears at each corner and along the sides of the rectangle that surrounds a selected drawing object. You drag a sizing handle to size an object.)';
  11373.             sTemp=L_pjdefSizingHandle_TEXT;
  11374.             break;
  11375.         case 'pjdefskill_set':
  11376.             L_pjdefskill_set_TEXT='(skill set: A particular resource\'s skills.)';
  11377.             sTemp=L_pjdefskill_set_TEXT;
  11378.             break;
  11379.         case 'pjdefskills_codes':
  11380.             L_pjdefskills_codes_TEXT='(skill codes: Skill codes are a type of enterprise outline code that allows you to specify the skills that a resource has.)';
  11381.             sTemp=L_pjdefskills_codes_TEXT;
  11382.             break;
  11383.         case 'pjdefSlack':
  11384.             L_pjdefSlack_TEXT='(slack: The amount of time that a task can slip before it affects another task or the project\'s finish date. Free slack is how much a task can slip before it delays another task. Total slack is how much a task can slip before it delays the project.)';
  11385.             sTemp=L_pjdefSlack_TEXT;
  11386.             break;
  11387.         case 'pjdefSlippage':
  11388.             L_pjdefSlippage_TEXT='(slippage: The amount of time that a task has been delayed from its original baseline plan. The slippage is the difference between the scheduled start or finish date for a task and the baseline start or finish date.)';
  11389.             sTemp=L_pjdefSlippage_TEXT;
  11390.             break;
  11391.         case 'pjdefSlippageBar':
  11392.             L_pjdefSlippageBar_TEXT='(slippage bar: A bar on the Detail Gantt view that indicates the degree to which a task has slipped.)';
  11393.             sTemp=L_pjdefSlippageBar_TEXT;
  11394.             break;
  11395.         case 'pjdefSoftConstraint':
  11396.             L_pjdefSoftConstraint_TEXT='(flexible constraint: A constraint that is flexible and does not tie a task to a single date. Flexible constraints are As Soon As Possible, As Late As Possible, Finish No Earlier Than, Finish No Later Than, Start No Earlier Than, and Start No Later Than.)';
  11397.             sTemp=L_pjdefSoftConstraint_TEXT;
  11398.             break;
  11399.         case 'pjdefSort':
  11400.             L_pjdefSort_TEXT='(sorting: A method of controlling the order in which task, resource, and other information is displayed.)';
  11401.             sTemp=L_pjdefSort_TEXT;
  11402.             break;
  11403.         case 'pjdefSource':
  11404.             L_pjdefSource_TEXT='(source: The location where moved, copied, imported, or exported information originated; can be a view, table, document, or other program. In OLE, the document or program that furnishes information to a linked object in a destination, document, or program.)';
  11405.             sTemp=L_pjdefSource_TEXT;
  11406.             break;
  11407.         case 'pjdefSpecialSkills':
  11408.             L_pjdefSpecialSkills_TEXT='(special skills: Capabilities, knowledge, and aptitudes that are relatively rare.)';
  11409.             sTemp=L_pjdefSpecialSkills_TEXT;
  11410.             break;
  11411.         case 'pjdefSPI':
  11412.             L_pjdefSPI_TEXT='(SPI: The ratio of the budgeted cost of work performed [BCWP] to the budgeted cost of work scheduled (BCWS), which is often used to estimate the project completion date. This is calculated as follows: SPI = BCWP/BCWS.)';
  11413.             sTemp=L_pjdefSPI_TEXT;
  11414.             break;
  11415.         case 'pjdefSplitTask':
  11416.             L_pjdefSplitTask_TEXT='(split task: A task whose schedule is interrupted. For example, a two-day task that does not require contiguous work might be split so that the first day of work is scheduled for Monday, and the second day is scheduled for Thursday.)';
  11417.             sTemp=L_pjdefSplitTask_TEXT;
  11418.             break;
  11419.         case 'pjdefStakeholders':
  11420.             L_pjdefStakeholders_TEXT='(stakeholders: Individuals and organizations that are actively involved in the project or whose interests may be affected by the project.)';
  11421.             sTemp=L_pjdefStakeholders_TEXT;
  11422.             break;
  11423.         case 'pjdefStandardRate':
  11424.             L_pjdefStandardRate_TEXT='(standard rate: A base rate that you assign to resources [such as people, equipment, or material] and that Project uses to calculate resource cost totals.)';
  11425.             sTemp=L_pjdefStandardRate_TEXT;
  11426.             break;
  11427.         case 'pjdefstart_page':
  11428.             L_pjdefstart_page_TEXT='(start page: The first page that appears when you start a Web browser. You can set this to a Web site or to a file on your computer\'s hard disk. A start page can contain hyperlinks to other files on your computer, on a network, or on the Web.)';
  11429.             sTemp=L_pjdefstart_page_TEXT;
  11430.             break;
  11431.         case 'pjdefStartDate':
  11432.             L_pjdefStartDate_TEXT='(start date: The date when a task is scheduled to begin. This date is based on the duration, calendars, and constraints of predecessor and successor tasks. A task\'s start date is also based on its own calendars and constraints.)';
  11433.             sTemp=L_pjdefStartDate_TEXT;
  11434.             break;
  11435.         case 'pjdefStaticPicture':
  11436.             L_pjdefStaticPicture_TEXT='(static picture: A snapshot of information, often from another document or program, that is not linked to the document or program in which the information was created.)';
  11437.             sTemp=L_pjdefStaticPicture_TEXT;
  11438.             break;
  11439.         case 'pjdefStaticText':
  11440.             L_pjdefStaticText_TEXT='(static text: Text in a custom form or dialog box that cannot be edited.)';
  11441.             sTemp=L_pjdefStaticText_TEXT;
  11442.             break;
  11443.         case 'pjdefStatusBar':
  11444.             L_pjdefStatusBar_TEXT='(status bar: The area at the bottom of the Project window that displays information about the current activity.)';
  11445.             sTemp=L_pjdefStatusBar_TEXT;
  11446.             break;
  11447.         case 'pjdefStatusDate':
  11448.             L_pjdefStatusDate_TEXT='(status date: A date that you set [rather than the current date] for reporting the time, cost, or performance condition of a project.)';
  11449.             sTemp=L_pjdefStatusDate_TEXT;
  11450.             break;
  11451.         case 'pjdefStatusReport':
  11452.             L_pjdefStatusReport_TEXT='(status report: A description of the status of a member\'s project work and related work. Status reports are requested, filled out, and reviewed in Project Server and cannot be used to automatically update project information in Project.)';
  11453.             sTemp=L_pjdefStatusReport_TEXT;
  11454.             break;
  11455.         case 'pjdefsubmenu':
  11456.             L_pjdefsubmenu_TEXT='(submenu: A menu that appears when you point to a command on a higher-level menu.)';
  11457.             sTemp=L_pjdefsubmenu_TEXT;
  11458.             break;
  11459.         case 'pjdefSubordinateTask':
  11460.             L_pjdefSubordinateTask_TEXT='(subtask: A task that is part of a summary task. The subtask information is consolidated into the summary task. You can designate subtasks by using the Project outlining feature.)';
  11461.             sTemp=L_pjdefSubordinateTask_TEXT;
  11462.             break;
  11463.         case 'pjdefSubphase':
  11464.             L_pjdefSubphase_TEXT='(subphase: A summary task that is nested within another summary task. With the Project outlining features, you can designate subphases.)';
  11465.             sTemp=L_pjdefSubphase_TEXT;
  11466.             break;
  11467.         case 'pjdefSubproject':
  11468.             L_pjdefSubproject_TEXT='(subproject: A project that is inserted into another project. Use subprojects as a way to break complex projects into more manageable parts. Also known as an inserted project.)';
  11469.             sTemp=L_pjdefSubproject_TEXT;
  11470.             break;
  11471.         case 'pjdefSuccessor':
  11472.             L_pjdefSuccessor_TEXT='(successor: A task that cannot start or finish until another task starts or finishes.)';
  11473.             sTemp=L_pjdefSuccessor_TEXT;
  11474.             break;
  11475.         case 'pjdefSummaryTask':
  11476.             L_pjdefSummaryTask_TEXT='(summary task: A task that is made up of subtasks and summarizes those subtasks. Use outlining to create summary tasks. Project automatically determines summary task information [such as duration and cost] by using information from the subtasks.)';
  11477.             sTemp=L_pjdefSummaryTask_TEXT;
  11478.             break;
  11479.         case 'pjdefSumrecurringtask':
  11480.             L_pjdefSumrecurringtask_TEXT='(summary recurring task: The summary task of a group of tasks that occurs regularly. You might define a weekly status meeting as a recurring task, for example.)';
  11481.             sTemp=L_pjdefSumrecurringtask_TEXT;
  11482.             break;
  11483.         case 'pjdefSupplier':
  11484.             L_pjdefSupplier_TEXT='(supplier: A contractor, vendor, or other agency that supplies a material, product, or service that is required to complete a project.)';
  11485.             sTemp=L_pjdefSupplier_TEXT;
  11486.             break;
  11487.         case 'pjdefSV':
  11488.             L_pjdefSV_TEXT='(SV: The difference between the budgeted cost of work performed [BCWP] and the budgeted cost of work scheduled [BCWS]. This is calculated as follows: SV = Budgeted Cost of Work Performed - Budgeted Cost of Work Scheduled.)';
  11489.             sTemp=L_pjdefSV_TEXT;
  11490.             break;
  11491.         case 'pjdefTabdelimited':
  11492.             L_pjdefTabdelimited_TEXT='(tab delimited text format: A record-based ASCII text format in which each field of a task or resource record is separated by a list-separator character, usually a tab stop. Each task or resource record ends with a carriage return/line feed.)';
  11493.             sTemp=L_pjdefTabdelimited_TEXT;
  11494.             break;
  11495.         case 'pjdefTable':
  11496.             L_pjdefTable_TEXT='(table: A set of columns that shows specific information about tasks, resources, and assignments in a sheet view.)';
  11497.             sTemp=L_pjdefTable_TEXT;
  11498.             break;
  11499.         case 'pjdefTask':
  11500.             L_pjdefTask_TEXT='(task: An activity that has a beginning and an end. Project plans are made up of tasks.)';
  11501.             sTemp=L_pjdefTask_TEXT;
  11502.             break;
  11503.         case 'pjdeftask_pane':
  11504.             L_pjdeftask_pane_TEXT='(task pane: A window within Project that provides commonly used commands. Located on the left, it allows you to use these commands while still working in your project plan.)';
  11505.             sTemp=L_pjdeftask_pane_TEXT;
  11506.             break;
  11507.         case 'pjdefTaskCalendar':
  11508.             L_pjdefTaskCalendar_TEXT='(task calendar: The base calendar that you can apply to individual tasks to control their scheduling, usually independent of the project calendar or any assigned resources\' calendars. By default, all tasks use the project calendar.)';
  11509.             sTemp=L_pjdefTaskCalendar_TEXT;
  11510.             break;
  11511.         case 'pjdefTaskDelegation':
  11512.             L_pjdefTaskDelegation_TEXT='(task delegation: The process of one team member assigning a task to another team member in Project Server. When a task is delegated to another team member, that team member actually does the work on the task.)';
  11513.             sTemp=L_pjdefTaskDelegation_TEXT;
  11514.             break;
  11515.         case 'pjdefTaskDependencies':
  11516.             L_pjdefTaskDependencies_TEXT='(task dependencies: A relationship between two linked tasks; linked by a dependency between their finish and start dates. There are four kinds of task dependencies: Finish-to-start[FS], Start-to-start [SS], Finish-to-finish [FF], and Start-to-finish [SF].)';
  11517.             sTemp=L_pjdefTaskDependencies_TEXT;
  11518.             break;
  11519.         case 'pjdefTaskId':
  11520.             L_pjdefTaskId_TEXT='(task ID: A number that Project automatically assigns to a task as you add it to the project. The task ID indicates the position of the task with respect to the other tasks.)';
  11521.             sTemp=L_pjdefTaskId_TEXT;
  11522.             break;
  11523.         case 'pjdefTaskInfo':
  11524.             L_pjdefTaskInfo_TEXT='(task information: Information provided in Project about a specific task. You can see summarized task information in the <b>Task Information</b> dialog box [on the <b>Project</b> menu in a task view].)';
  11525.             sTemp=L_pjdefTaskInfo_TEXT;
  11526.             break;
  11527.         case 'pjdefTaskList':
  11528.             L_pjdefTaskList_TEXT='(task list: The categories of information shown in the sheet portion of the Gantt Chart view that specify details about a task, such as task name, duration, start and finish dates, predecessors, and resource names.)';
  11529.             sTemp=L_pjdefTaskList_TEXT;
  11530.             break;
  11531.         case 'pjdefTaskReport':
  11532.             L_pjdefTaskReport_TEXT='(task reports: Printed information about a project\'s tasks or activities. Task reports usually include information about start dates, work completed, and expected durations.)';
  11533.             sTemp=L_pjdefTaskReport_TEXT;
  11534.             break;
  11535.         case 'pjdefTaskType':
  11536.             L_pjdefTaskType_TEXT='(task type: A characterization of a task based on which aspect of the task is fixed and which aspects are variable. There are three task types: Fixed Units, Fixed Work, and Fixed Duration. The default task type in Project is Fixed Units.)';
  11537.             sTemp=L_pjdefTaskType_TEXT;
  11538.             break;
  11539.         case 'pjdefTaskView':
  11540.             L_pjdefTaskView_TEXT='(task view: A view that displays task information. Task views include three task forms; examples include Calendar, Detail Gantt, Gantt Chart, Milestone Rollup, PA_PERT Entry Sheet, Task Entry, Relationship Diagram, Task Sheet, and Task Usage.)';
  11541.             sTemp=L_pjdefTaskView_TEXT;
  11542.             break;
  11543.         case 'pjdefTCPI':
  11544.             L_pjdefTCPI_TEXT='(TCPI: The ratio of the work remaining to be done to funds remaining to be spent, as of the status date [BAC - BCWP]/[BAC - ACWP]. A TCPI value greater than one indicates a need for increased performance; less than one indicates performance can decrease.)';
  11545.             sTemp=L_pjdefTCPI_TEXT;
  11546.             break;
  11547.         case 'pjdefTemplate':
  11548.             L_pjdefTemplate_TEXT='(template: A Project file format [*.mpt] that lets you reuse existing schedules as the starting point for creating new schedules. Task and resource information, formatting, macros, and project-specific settings can all become part of a template.)';
  11549.             sTemp=L_pjdefTemplate_TEXT;
  11550.             break;
  11551.         case 'pjdefTextField':
  11552.             L_pjdefTextField_TEXT='(text field: A type of field whose content is text. Examples include the Task Name and Email Address fields. This field can contain up to 255 characters.)';
  11553.             sTemp=L_pjdefTextField_TEXT;
  11554.             break;
  11555.         case 'pjdefTextListField':
  11556.             L_pjdefTextListField_TEXT='(text list field: A type of field whose content is a list of text items separated by the list separator character, typically a comma. Examples include the Resource Group and Resource Names fields.)';
  11557.             sTemp=L_pjdefTextListField_TEXT;
  11558.             break;
  11559.         case 'pjdefTimephased':
  11560.             L_pjdefTimephased_TEXT='(timephased: Task, resource, or assignment information that is distributed over time. You can review timephased information in any available time period in the fields on the right side of the Task Usage and Resource Usage views.)';
  11561.             sTemp=L_pjdefTimephased_TEXT;
  11562.             break;
  11563.         case 'pjdefTimescale':
  11564.             L_pjdefTimescale_TEXT='(timescale: The time period indicator at the top of the Gantt views, the Resource Graph view, the Task Usage view, and the Resource Usage view. You can customize it to show up to three tiers that can display various time units: top, middle, and bottom.)';
  11565.             sTemp=L_pjdefTimescale_TEXT;
  11566.             break;
  11567.         case 'pjdefTimesheet':
  11568.             L_pjdefTimesheet_TEXT='(timesheet: In Project Web Access, the timesheet is a page where resources can record their progress on tasks and send updates to the project manager.)';
  11569.             sTemp=L_pjdefTimesheet_TEXT;
  11570.             break;
  11571.         case 'pjdefTimeUnit':
  11572.             L_pjdefTimeUnit_TEXT='(time unit abbreviation: Represents the unit of measure for the duration of working time or elapsed time. Example of working time abbreviations: hr = hour. Example of elapsed time abbreviations: ewk = elapsed weeks.)';
  11573.             sTemp=L_pjdefTimeUnit_TEXT;
  11574.             break;
  11575.         case 'pjdeftitle_bar':
  11576.             L_pjdeftitle_bar_TEXT='(title bar: A horizontal bar at the top of a window, dialog box, or toolbar that shows the name of the document, program, or toolbar.)';
  11577.             sTemp=L_pjdeftitle_bar_TEXT;
  11578.             break;
  11579.         case 'pjdeftoolbar':
  11580.             L_pjdeftoolbar_TEXT='(toolbar: A bar with buttons and options used to carry out commands. To display a toolbar, point to <b>Toolbars</b> on the <b>View</b> menu, and then click the toolbar you want. To see more buttons, click <b>Toolbar Options</b> at the end of the toolbar.)';
  11581.             sTemp=L_pjdeftoolbar_TEXT;
  11582.             break;
  11583.         case 'pjdefToolTip':
  11584.             L_pjdefToolTip_TEXT='(ToolTip: The word or short phrase that describes the function of a toolbar button or other tool. The ToolTip appears when you pause the pointer over a button or tool.)';
  11585.             sTemp=L_pjdefToolTip_TEXT;
  11586.             break;
  11587.         case 'pjdefTopDownEstimating':
  11588.             L_pjdefTopDownEstimating_TEXT='(top-down estimating: An estimating method that uses the actual costs of a previous, similar project as the basis for estimating cost totals of a current project. This method is often used when there is limited information about the project.)';
  11589.             sTemp=L_pjdefTopDownEstimating_TEXT;
  11590.             break;
  11591.         case 'pjdefTotalCost':
  11592.             L_pjdefTotalCost_TEXT='(total cost: The calculated cost of a project, task, resource, or assignment over the life of the project.)';
  11593.             sTemp=L_pjdefTotalCost_TEXT;
  11594.             break;
  11595.         case 'pjdefTotalSlack':
  11596.             L_pjdefTotalSlack_TEXT='(total slack: The amount of time that the finish date of a task can be delayed without delaying the finish date of the project.)';
  11597.             sTemp=L_pjdefTotalSlack_TEXT;
  11598.             break;
  11599.         case 'pjdefUNC':
  11600.             L_pjdefUNC_TEXT='(UNC: Universal Naming Convention addresses, which are used to identify the location of a file that resides on a network server. These addresses start with two backslash characters [\\\\] and supply the server name, share name, and full path to the file.)';
  11601.             sTemp=L_pjdefUNC_TEXT;
  11602.             break;
  11603.         case 'pjdefUnderallocation':
  11604.             L_pjdefUnderallocation_TEXT='(underallocation: Assigning a resource to work fewer hours than the resource has available.)';
  11605.             sTemp=L_pjdefUnderallocation_TEXT;
  11606.             break;
  11607.         case 'pjdefunicode':
  11608.             L_pjdefunicode_TEXT='(Unicode: A character-encoding standard developed by the Unicode Consortium. By using more than one byte to represent each character, Unicode enables almost all of the written languages in the world to be represented by using a single character set.)';
  11609.             sTemp=L_pjdefunicode_TEXT;
  11610.             break;
  11611.         case 'pjdefUniqueId':
  11612.             L_pjdefUniqueId_TEXT='(unique ID: A unique number that Project automatically assigns to a task, resource, or assignment. It will not change as other tasks or resources are added to or removed from the project.)';
  11613.             sTemp=L_pjdefUniqueId_TEXT;
  11614.             break;
  11615.         case 'pjdefUnitAvailability':
  11616.             L_pjdefUnitAvailability_TEXT='(unit availability: Amount of time, expressed as a percentage or a decimal number, that a resource can be scheduled for assigned work. It refers to the availability of a resource; for example, a resource may be available 50%, 100%, or 300% of full time.)';
  11617.             sTemp=L_pjdefUnitAvailability_TEXT;
  11618.             break;
  11619.         case 'pjdefUnits':
  11620.             L_pjdefUnits_TEXT='(units: The quantity of a resource assigned to a task. The maximum units is the maximum number of units available for the resource. For example, if you have three plumbers, the maximum units is 300 percent or three plumbers working full-time.)';
  11621.             sTemp=L_pjdefUnits_TEXT;
  11622.             break;
  11623.         case 'pjdefURL':
  11624.             L_pjdefURL_TEXT='(URL: Uniform Resource Locator, which is a standard for naming and locating an object on the Internet, such as a file or newsgroup. URLs are used extensively on the World Wide Web. They are used in HTML documents to specify the target of a hyperlink.)';
  11625.             sTemp=L_pjdefURL_TEXT;
  11626.             break;
  11627.         case 'pjdefVAC':
  11628.             L_pjdefVAC_TEXT='(VAC: The earned value field that shows the difference between the budget at completion [BAC] and the estimate at completion [EAC]. In Project, the EAC is the Total Cost field, and the BAC is the Baseline Cost field.)';
  11629.             sTemp=L_pjdefVAC_TEXT;
  11630.             break;
  11631.         case 'pjdefVariableConsumptionRate':
  11632.             L_pjdefVariableConsumptionRate_TEXT='(variable material consumption: The time-based quantity of material resource to be used in an assignment. A variable consumption indicates that the amount of material that is used changes if the task duration or assignment length changes.)';
  11633.             sTemp=L_pjdefVariableConsumptionRate_TEXT;
  11634.             break;
  11635.         case 'pjdefVariableCosts':
  11636.             L_pjdefVariableCosts_TEXT='(variable costs: Expenses that can change, depending on how much a resource actually works or how much of a material resource is consumed. Variable cost is typical for resources who bill their time hourly or for material resources.)';
  11637.             sTemp=L_pjdefVariableCosts_TEXT;
  11638.             break;
  11639.         case 'pjdefVariance':
  11640.             L_pjdefVariance_TEXT='(variance: The difference between baseline and scheduled task or resource information, they usually occur when you set a baseline plan and begin entering actual information into your schedule. Variances can occur in work, costs, and schedule.)';
  11641.             sTemp=L_pjdefVariance_TEXT;
  11642.             break;
  11643.         case 'pjdefversion':
  11644.             L_pjdefversion_TEXT='(version: The default version created when saving a project in Project Server is \"Published.\" Other version names may be defined by your organization. It is next to the project name in the <b>Open from Microsoft Project Server</b> dialog box.)';
  11645.             sTemp=L_pjdefversion_TEXT;
  11646.             break;
  11647.         case 'pjdefView':
  11648.             L_pjdefView_TEXT='(view: The combination of one or more views [Gantt Chart, Resource Sheet, and so on] and if applicable, a table and a filter. Use views to work with information in a variety of formats. There are three types of views: Charts or graphs, Sheets, and Forms.)';
  11649.             sTemp=L_pjdefView_TEXT;
  11650.             break;
  11651.         case 'pjdefViewBar':
  11652.             L_pjdefViewBar_TEXT='(View Bar: A screen element of Project that appears along the left edge of the Project window. The View Bar provides a convenient means of changing views by just clicking the icons that appear on the View Bar.)';
  11653.             sTemp=L_pjdefViewBar_TEXT;
  11654.             break;
  11655.         case 'pjdefVirus':
  11656.             L_pjdefVirus_TEXT='(virus: A computer program or macro that \"infects\" computer files by inserting copies of itself into those files and then executing when the host files are opened. A virus can spread the infection to other files, and can corrupt or delete files.)';
  11657.             sTemp=L_pjdefVirus_TEXT;
  11658.             break;
  11659.         case 'pjdefVisual':
  11660.             L_pjdefVisual_TEXT='(visual: Used to describe insertion point movement and text selection when working with bidirectional text. Movement progresses within bidirectional text by moving to the next visually-adjacent character.)';
  11661.             sTemp=L_pjdefVisual_TEXT;
  11662.             break;
  11663.         case 'pjdefVisual_Basic_Editor':
  11664.             L_pjdefVisual_Basic_Editor_TEXT='(Visual Basic Editor: A Visual Basic for Applications interface in which you can edit macros that you\'ve recorded and write new macros and programs. To open, on the <b>Tools</b> menu, point to <b>Macros</b>, and then click <b>Visual Basic Editor</b>.)';
  11665.             sTemp=L_pjdefVisual_Basic_Editor_TEXT;
  11666.             break;
  11667.         case 'pjdefVisualBasic':
  11668.             L_pjdefVisualBasic_TEXT='(VBA: A complete programming language you can use to automate tasks in Project and many other Microsoft programs.)';
  11669.             sTemp=L_pjdefVisualBasic_TEXT;
  11670.             break;
  11671.         case 'pjdefWebBrowser':
  11672.             L_pjdefWebBrowser_TEXT='(Web browser: A computer program that is capable of locating and displaying information on the World Wide Web.)';
  11673.             sTemp=L_pjdefWebBrowser_TEXT;
  11674.             break;
  11675.         case 'pjdefWebInbox':
  11676.             L_pjdefWebInbox_TEXT='(WebInbox: A message center in Project where a workgroup manager can view Web-based messages from workgroup members who are using Microsoft Project Central. The manager can update the project schedule based on the responses of workgroup members.)';
  11677.             sTemp=L_pjdefWebInbox_TEXT;
  11678.             break;
  11679.         case 'pjdefWebServer':
  11680.             L_pjdefWebServer_TEXT='(Web server: A computer and supporting software that connects a workgroup to Project Server, an intranet, or the World Wide Web.)';
  11681.             sTemp=L_pjdefWebServer_TEXT;
  11682.             break;
  11683.         case 'pjdefWebSite':
  11684.             L_pjdefWebSite_TEXT='(Web site: A Web page or collection of pages on an intranet or the World Wide Web that is formatted in HTML and is accessible from a Web browser.)';
  11685.             sTemp=L_pjdefWebSite_TEXT;
  11686.             break;
  11687.         case 'pjdefWeightedDuration':
  11688.             L_pjdefWeightedDuration_TEXT='(weighted duration: Weighted average of the expected, pessimistic, and optimistic dates and durations. By default, PERT analysis calculation gives heaviest weight to the expected duration, and lightest weight to the pessimistic and optimistic durations.)';
  11689.             sTemp=L_pjdefWeightedDuration_TEXT;
  11690.             break;
  11691.         case 'pjdefWhatIfScenario':
  11692.             L_pjdefWhatIfScenario_TEXT='(what-if scenario: A method that is used to forecast values based on information that you provide.)';
  11693.             sTemp=L_pjdefWhatIfScenario_TEXT;
  11694.             break;
  11695.         case 'pjdefWildcard':
  11696.             L_pjdefWildcard_TEXT='(wildcard: A character that is used in searching fields for text. Wildcards include: * [asterisk], used for any set of characters, and ? [question mark], used for any single character. You can use wildcards to search text fields, but not number fields.)';
  11697.             sTemp=L_pjdefWildcard_TEXT;
  11698.             break;
  11699.         case 'pjdefwizard':
  11700.             L_pjdefwizard_TEXT='(wizard: A feature that asks questions and then performs a set of actions according to your answers.)';
  11701.             sTemp=L_pjdefwizard_TEXT;
  11702.             break;
  11703.         case 'pjdefWork':
  11704.             L_pjdefWork_TEXT='(work: For tasks, the total labor required to complete a task. For assignments, the amount of work to which a resource is assigned. For resources, the total amount of work to which a resource is assigned for all tasks. Work is different from task duration.)';
  11705.             sTemp=L_pjdefWork_TEXT;
  11706.             break;
  11707.         case 'pjdefWorkBreakdownStructure':
  11708.             L_pjdefWorkBreakdownStructure_TEXT='(WBS: A hierarchical structure that is used to organize tasks for reporting schedules and tracking costs. With Project, you can represent the work breakdown structure by using task IDs or by assigning your own WBS code to each task.)';
  11709.             sTemp=L_pjdefWorkBreakdownStructure_TEXT;
  11710.             break;
  11711.         case 'pjdefWorkgroup':
  11712.             L_pjdefWorkgroup_TEXT='(workgroup: A group that is composed of a manager and members who are working on the same project. The manager assigns tasks to the members, who receive and respond to workgroup messages [through e-mail, an intranet, and the Web] from the manager.)';
  11713.             sTemp=L_pjdefWorkgroup_TEXT;
  11714.             break;
  11715.         case 'pjdefWorkgroupManager':
  11716.             L_pjdefWorkgroupManager_TEXT='(workgroup manager: In a workgroup, creates and maintains the project schedule and uses workgroup messages to assign tasks to the workgroup members; also uses the workgroup features to update tasks in the project as members reply.)';
  11717.             sTemp=L_pjdefWorkgroupManager_TEXT;
  11718.             break;
  11719.         case 'pjdefWorkgroupMembers':
  11720.             L_pjdefWorkgroupMembers_TEXT='(workgroup members: Receive workgroup messages from the workgroup manager; they can receive and reply to their messages by using either a 32-bit, MAPI-compliant e-mail system or by using their Web browsers to log on to Project Server.)';
  11721.             sTemp=L_pjdefWorkgroupMembers_TEXT;
  11722.             break;
  11723.         case 'pjdefWorkgroupMessages':
  11724.             L_pjdefWorkgroupMessages_TEXT='(workgroup messages: Messages that the workgroup manager and workgroup members send through Project Server or e-mail about the tasks of a project.)';
  11725.             sTemp=L_pjdefWorkgroupMessages_TEXT;
  11726.             break;
  11727.         case 'pjdefWorkingDaysReport':
  11728.             L_pjdefWorkingDaysReport_TEXT='(Working Days report: A summary of working and nonworking time for a project or set of resources. The report also includes exceptions to the standard times, if any exist.)';
  11729.             sTemp=L_pjdefWorkingDaysReport_TEXT;
  11730.             break;
  11731.         case 'pjdefWorkingTime':
  11732.             L_pjdefWorkingTime_TEXT='(working time: Hours designated in a resource or project calendar during which work can occur.)';
  11733.             sTemp=L_pjdefWorkingTime_TEXT;
  11734.             break;
  11735.         case 'pjdefWorkResource':
  11736.             L_pjdefWorkResource_TEXT='(work resource: People and equipment resources that perform work to accomplish a task. Work resources consume time [hours or days] to accomplish tasks.)';
  11737.             sTemp=L_pjdefWorkResource_TEXT;
  11738.             break;
  11739.         case 'pjdefWorkspace':
  11740.             L_pjdefWorkspace_TEXT='(workspace: Files and settings you can save and reopen by opening a single workspace file. Workspace files have the .mpw extension. When you create a workspace file, Project creates lists of the current settings, open projects, views, and so on.)';
  11741.             sTemp=L_pjdefWorkspace_TEXT;
  11742.             break;
  11743.         case 'pjdefWorldWideWeb':
  11744.             L_pjdefWorldWideWeb_TEXT='(WWW: A subset of the Internet that uses a graphical user interface as opposed to a text-based user interface. The pages or Web sites that display are formatted using by HTML. Web browsers make it possible for users to view Web sites.)';
  11745.             sTemp=L_pjdefWorldWideWeb_TEXT;
  11746.             break;
  11747.         case 'pjdefXLS':
  11748.             L_pjdefXLS_TEXT='(Excel Worksheet file format: The file format that is used by Excel and characterized by the .xls extension.)';
  11749.             sTemp=L_pjdefXLS_TEXT;
  11750.             break;
  11751.         case 'pjdefXML':
  11752.             L_pjdefXML_TEXT='(XML: Extensible Markup Language [XML] is a format for delivering rich, structured data from an application in a standard, consistent way. XML describes the content of a document, whereas HTML tags describe how the document looks.)';
  11753.             sTemp=L_pjdefXML_TEXT;
  11754.             break;
  11755.         case 'pjdefYesNoField':
  11756.             L_pjdefYesNoField_TEXT='(Yes/No field: A type of field with content set to either Yes or No; also known as a Boolean field or a True/False field. For example, the Recurring field indicates whether the task is a recurring task.)';
  11757.             sTemp=L_pjdefYesNoField_TEXT;
  11758.             break;
  11759.         case 'pjdefZoom':
  11760.             L_pjdefZoom_TEXT='(zoom: A method of increasing or decreasing the information displayed in a view. You can zoom in to view one week of information or zoom out to view the entire project.)';
  11761.             sTemp=L_pjdefZoom_TEXT;
  11762.             break;
  11763.         case 'pjenterpriseproject':
  11764.             L_pjenterpriseproject_TEXT='(enterprise project: A project that is stored in Project Server to ensure information integrity. To make changes to an enterprise project, users with access permissions are required to check it in and out from Project Server.)';
  11765.             sTemp=L_pjenterpriseproject_TEXT;
  11766.             break;
  11767.         case 'pjgroup':
  11768.             L_pjgroup_TEXT='(group: A collection of individual users who are assigned the same permissions.)';
  11769.             sTemp=L_pjgroup_TEXT;
  11770.             break;
  11771.         case 'pjnonprojecttime':
  11772.             L_pjnonprojecttime_TEXT='(nonproject time: Hours or days that are designated in a resource or project calendar when Project should not schedule tasks because work is not done. Nonproject time can include lunch breaks, weekends, and holidays, for example.)';
  11773.             sTemp=L_pjnonprojecttime_TEXT;
  11774.             break;
  11775.         case 'pjorganization':
  11776.             L_pjorganization_TEXT='(organization: A collection of projects, users, and data that has a one-to-one relationship with Project Server.)';
  11777.             sTemp=L_pjorganization_TEXT;
  11778.             break;
  11779.         case 'pjpayrate':
  11780.             L_pjpayrate_TEXT='(pay rate: Resource cost per hour. Project includes two types of pay rates: standard rates and overtime rates.)';
  11781.             sTemp=L_pjpayrate_TEXT;
  11782.             break;
  11783.         case 'pjportfolio':
  11784.             L_pjportfolio_TEXT='(portfolio: A list of projects within an organization that may share common management of scope, budget, or resources.)';
  11785.             sTemp=L_pjportfolio_TEXT;
  11786.             break;
  11787.         case 'pjproposedresource':
  11788.             L_pjproposedresource_TEXT='(proposed resource: A resource with a pending resource allocation to a task assignment that has not yet been authorized. This resource assignment does not detract from the availability of the resource to work on other projects.)';
  11789.             sTemp=L_pjproposedresource_TEXT;
  11790.             break;
  11791.         case 'pjsecuritytemplate':
  11792.             L_pjsecuritytemplate_TEXT='(security template: A predefined set of permissions.)';
  11793.             sTemp=L_pjsecuritytemplate_TEXT;
  11794.             break;
  11795.         case 'pjsoftbooking':
  11796.             L_pjsoftbooking_TEXT='(soft booking: A resource assignment type that can be used for planning purposes. A soft-booked resource is reserved for assignments at the project level, usually before it is known whether assignments or the project will actually proceed or not.)';
  11797.             sTemp=L_pjsoftbooking_TEXT;
  11798.             break;
  11799.         case 'pjtodolist':
  11800.             L_pjtodolist_TEXT='(to-do list: A list of tasks that are not associated with a project schedule.)';
  11801.             sTemp=L_pjtodolist_TEXT;
  11802.             break;
  11803.         case 'pjtracking':
  11804.             L_pjtracking_TEXT='(tracking: Viewing and updating of the actual progress of tasks so that you can see progress across time, evaluate slippage of tasks, compare scheduled or baseline data to actual data, and check the completion percentage of tasks and your project.)';
  11805.             sTemp=L_pjtracking_TEXT;
  11806.             break;
  11807.         case 'pjviewpwa':
  11808.             L_pjviewpwa_TEXT='(view: A list or report of projects or resources within Project Server. Views allow you to display and analyze project, task, and resource data.)';
  11809.             sTemp=L_pjviewpwa_TEXT;
  11810.             break;
  11811.  
  11812.         // Office Imaging Services
  11813.  
  11814.         case 'oiaspectratio':
  11815.             L_oiaspectratio_TEXT='(aspect ratio: The ratio between picture width and picture height. This ratio can be maintained even when resizing a picture.)';
  11816.             sTemp=L_oiaspectratio_TEXT;
  11817.             break;
  11818.         case 'oibrightness':
  11819.             L_oibrightness_TEXT='(brightness: The relative lightness of a color.)';
  11820.             sTemp=L_oibrightness_TEXT;
  11821.             break;
  11822.         case 'oicontrast':
  11823.             L_oicontrast_TEXT='(contrast: The difference between the darkest and lightest areas in a picture.)';
  11824.             sTemp=L_oicontrast_TEXT;
  11825.             break;
  11826.         case 'oihighlights':
  11827.             L_oihighlights_TEXT='(highlights: The brightest or lightest areas in a picture.)';
  11828.             sTemp=L_oihighlights_TEXT;
  11829.             break;
  11830.         case 'oihue':
  11831.             L_oihue_TEXT='(hue: The color attribute that most readily distinguishes one color from other colors. A color\'s hue is also its name.)';
  11832.             sTemp=L_oihue_TEXT;
  11833.             break;
  11834.         case 'oimidtones':
  11835.             L_oimidtones_TEXT='(midtones: Tones in a picture that are in the middle of the tonal range, between the lightest and darkest tones.)';
  11836.             sTemp=L_oimidtones_TEXT;
  11837.             break;
  11838.         case 'oisaturation':
  11839.             L_oisaturation_TEXT='(saturation: A measure of purity in a color, determined by its movement away from gray. More gray in a color means lower saturation; less gray in a color means higher saturation.)';
  11840.             sTemp=L_oisaturation_TEXT;
  11841.             break;
  11842.         case 'oishadows':
  11843.             L_oishadows_TEXT='(shadows: The darkest areas in a picture.)';
  11844.             sTemp=L_oishadows_TEXT;
  11845.             break;
  11846.         case 'oizoom':
  11847.             L_oizoom_TEXT='(zoom: To change the display magnification level. When you zoom to a level higher than 100 percent, less of the workspace is visible and the images on it appear larger.)';
  11848.             sTemp=L_oizoom_TEXT;
  11849.             break;
  11850.         default:
  11851.             sTemp=L_UNDEFINED_TEXT;
  11852.             break;
  11853.     }
  11854.     return sTemp;
  11855. }
  11856.